Changeset 85827 in webkit


Ignore:
Timestamp:
May 4, 2011 8:55:42 PM (13 years ago)
Author:
eric@webkit.org
Message:

2011-05-04 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Add more missing imports from scm refactor
https://bugs.webkit.org/show_bug.cgi?id=60239

  • Scripts/webkitpy/common/checkout/scm/git.py:
  • Scripts/webkitpy/common/checkout/scm/svn.py:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r85821 r85827  
     12011-05-04  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        Add more missing imports from scm refactor
     6        https://bugs.webkit.org/show_bug.cgi?id=60239
     7
     8        * Scripts/webkitpy/common/checkout/scm/git.py:
     9        * Scripts/webkitpy/common/checkout/scm/svn.py:
     10
    1112011-05-04  Eric Seidel  <eric@webkit.org>
    212
  • trunk/Tools/Scripts/webkitpy/common/checkout/scm/git.py

    r85802 r85827  
    3232
    3333from webkitpy.common.memoized import memoized
     34from webkitpy.common.system.deprecated_logging import log
    3435from webkitpy.common.system.executive import Executive, run_command, ScriptError
    3536
  • trunk/Tools/Scripts/webkitpy/common/checkout/scm/svn.py

    r85452 r85827  
    3434
    3535from webkitpy.common.memoized import memoized
    36 
    37 from .scm import AuthenticationError, SCM, commit_error_handler
     36from webkitpy.common.system.deprecated_logging import log
    3837from webkitpy.common.system.executive import Executive, run_command, ScriptError
    3938from webkitpy.common.system import ospath
     39
     40from .scm import AuthenticationError, SCM, commit_error_handler
    4041
    4142
Note: See TracChangeset for help on using the changeset viewer.