From 711544b00c22b1c2559333e8925e449812f9e5cf Mon Sep 17 00:00:00 2001
From: Simon Hausmann <hausmann@kde.org>
Date: Sun, 1 Apr 2007 15:40:46 +0200
Subject: [PATCH] Clean up python class names.

Signed-off-by: Simon Hausmann <hausmann@kde.org>
---
 contrib/fast-import/git-p4 | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

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:
-- 
2.26.2