Changeset 85450 in webkit


Ignore:
Timestamp:
May 1, 2011 6:34:15 PM (13 years ago)
Author:
eric@webkit.org
Message:

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

Reviewed by Adam Barth.

scm.py should be split into many pieces
https://bugs.webkit.org/show_bug.cgi?id=59908

Forgot an AuthenticationError import.

  • 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

    r85449 r85450  
     12011-05-01  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        scm.py should be split into many pieces
     6        https://bugs.webkit.org/show_bug.cgi?id=59908
     7
     8        Forgot an AuthenticationError import.
     9
     10        * Scripts/webkitpy/common/checkout/scm/git.py:
     11        * Scripts/webkitpy/common/checkout/scm/svn.py:
     12
    1132011-05-01  Arno Renevier  <arno@renevier.net>
    214
  • trunk/Tools/Scripts/webkitpy/common/checkout/scm/git.py

    r85449 r85450  
    3434from webkitpy.common.system.executive import Executive, run_command, ScriptError
    3535
    36 from .scm import SCM, commit_error_handler
     36from .scm import AuthenticationError, SCM, commit_error_handler
    3737from .svn import SVN, SVNRepository
    3838
  • trunk/Tools/Scripts/webkitpy/common/checkout/scm/svn.py

    r85449 r85450  
    3232from webkitpy.common.memoized import memoized
    3333
    34 from .scm import SCM, commit_error_handler
     34from .scm import AuthenticationError, SCM, commit_error_handler
    3535from webkitpy.common.system.executive import Executive, run_command, ScriptError
    3636
Note: See TracChangeset for help on using the changeset viewer.