diff options
author | Simon Hausmann <hausmann@kde.org> | 2007-04-01 15:40:46 +0200 |
---|---|---|
committer | Simon Hausmann <hausmann@kde.org> | 2007-04-01 15:40:46 +0200 |
commit | 711544b00c22b1c2559333e8925e449812f9e5cf (patch) | |
tree | 2453e8d0758a146f682c5ce72cbcde4b3023fbb9 /contrib | |
parent | Fix "compilation" :) (diff) | |
download | tgif-711544b00c22b1c2559333e8925e449812f9e5cf.tar.xz |
Clean up python class names.
Signed-off-by: Simon Hausmann <hausmann@kde.org>
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/fast-import/git-p4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/fast-import/git-p4 b/contrib/fast-import/git-p4 index 0443337359..24c8e66e87 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: |