summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f72537f)
raw | patch | inline | side by side (parent: f72537f)
author | Simon Hausmann <hausmann@kde.org> | |
Fri, 16 Mar 2007 12:47:46 +0000 (13:47 +0100) | ||
committer | Simon Hausmann <hausmann@kde.org> | |
Fri, 16 Mar 2007 12:47:46 +0000 (13:47 +0100) |
Signed-off-by: Simon Hausmann <hausmann@kde.org>
contrib/fast-import/p4-git-sync.py | patch | blob | history |
index e07fcee42c13e98a8a34de982eb3cc2f5bb14b60..ed88debd4599ec1ed88a7872f1aa574e454f7435 100755 (executable)
try:
opts, args = getopt.getopt(sys.argv[1:], "", [ "continue", "git-dir=", "origin=", "reset", "master=",
- "submit-log-subst=", "log-substitutions=", "interactive",
+ "submit-log-subst=", "log-substitutions=", "noninteractive",
"dry-run" ])
except getopt.GetoptError:
print "fixme, syntax error"
master = ""
firstTime = True
reset = False
-interactive = False
+interactive = True
dryRun = False
for o, a in opts:
for line in open(a, "r").readlines():
tokens = line[:-1].split("=")
logSubstitutions[tokens[0]] = tokens[1]
- elif o == "--interactive":
- interactive = True
+ elif o == "--noninteractive":
+ interactive = False
elif o == "--dry-run":
dryRun = True