summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorLibravatar Simon Hausmann <hausmann@kde.org>2007-04-01 15:40:46 +0200
committerLibravatar Simon Hausmann <hausmann@kde.org>2007-04-01 15:40:46 +0200
commit711544b00c22b1c2559333e8925e449812f9e5cf (patch)
tree2453e8d0758a146f682c5ce72cbcde4b3023fbb9 /contrib
parentFix "compilation" :) (diff)
downloadtgif-711544b00c22b1c2559333e8925e449812f9e5cf.tar.xz
Clean up python class names.
Signed-off-by: Simon Hausmann <hausmann@kde.org>
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/fast-import/git-p48
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: