Clean up python class names.
Signed-off-by: Simon Hausmann <hausmann@kde.org>
This commit is contained in:
parent
2a9489c024
commit
711544b00c
@ -160,7 +160,7 @@ class P4CleanTags(Command):
|
|||||||
print "%s tags removed." % len(allTags)
|
print "%s tags removed." % len(allTags)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
class P4Sync(Command):
|
class P4Submit(Command):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
Command.__init__(self)
|
Command.__init__(self)
|
||||||
self.options = [
|
self.options = [
|
||||||
@ -407,7 +407,7 @@ class P4Sync(Command):
|
|||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
class GitSync(Command):
|
class P4Sync(Command):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
Command.__init__(self)
|
Command.__init__(self)
|
||||||
self.options = [
|
self.options = [
|
||||||
@ -1060,8 +1060,8 @@ def printUsage(commands):
|
|||||||
commands = {
|
commands = {
|
||||||
"debug" : P4Debug(),
|
"debug" : P4Debug(),
|
||||||
"clean-tags" : P4CleanTags(),
|
"clean-tags" : P4CleanTags(),
|
||||||
"submit" : P4Sync(),
|
"submit" : P4Submit(),
|
||||||
"sync" : GitSync()
|
"sync" : P4Sync()
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(sys.argv[1:]) == 0:
|
if len(sys.argv[1:]) == 0:
|
||||||
|
Loading…
Reference in New Issue
Block a user