From: Simon Hausmann Date: Sun, 1 Apr 2007 13:40:46 +0000 (+0200) Subject: Clean up python class names. X-Git-Tag: v1.5.3-rc0~65^2^2~142 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=711544b00c22b1c2559333e8925e449812f9e5cf;p=git-core%2Fgit.git Clean up python class names. Signed-off-by: Simon Hausmann --- diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index 044333735..24c8e66e8 100755 --- a/contrib/fast-import/git-p4 +++ b/contrib/fast-import/git-p4 @@ -160,7 +160,7 @@ class P4CleanTags(Command): print "%s tags removed." % len(allTags) return True -class P4Sync(Command): +class P4Submit(Command): def __init__(self): Command.__init__(self) self.options = [ @@ -407,7 +407,7 @@ class P4Sync(Command): return True -class GitSync(Command): +class P4Sync(Command): def __init__(self): Command.__init__(self) self.options = [ @@ -1060,8 +1060,8 @@ def printUsage(commands): commands = { "debug" : P4Debug(), "clean-tags" : P4CleanTags(), - "submit" : P4Sync(), - "sync" : GitSync() + "submit" : P4Submit(), + "sync" : P4Sync() } if len(sys.argv[1:]) == 0: