##// END OF EJS Templates
glog: fix "incompatible option" error message....
Greg Ward -
r10097:ffa6f2eb stable
parent child Browse files
Show More
@@ -218,7 +218,8 b' def check_unsupported_flags(opts):'
218 "only_merges", "user", "only_branch", "prune", "newest_first",
218 "only_merges", "user", "only_branch", "prune", "newest_first",
219 "no_merges", "include", "exclude"]:
219 "no_merges", "include", "exclude"]:
220 if op in opts and opts[op]:
220 if op in opts and opts[op]:
221 raise util.Abort(_("--graph option is incompatible with --%s") % op)
221 raise util.Abort(_("--graph option is incompatible with --%s")
222 % op.replace("_", "-"))
222
223
223 def generate(ui, dag, displayer, showparents, edgefn):
224 def generate(ui, dag, displayer, showparents, edgefn):
224 seen, state = [], asciistate()
225 seen, state = [], asciistate()
General Comments 0
You need to be logged in to leave comments. Login now