Default to interactive syncing

Signed-off-by: Simon Hausmann <hausmann@kde.org>
This commit is contained in:
Simon Hausmann 2007-03-16 13:47:46 +01:00
parent f72537f97e
commit 228d36c92b

View file

@ -39,7 +39,7 @@ def die(msg):
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"
@ -53,7 +53,7 @@ def die(msg):
master = ""
firstTime = True
reset = False
interactive = False
interactive = True
dryRun = False
for o, a in opts:
@ -76,8 +76,8 @@ def die(msg):
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