hgk: fix mixup of --limit and REVRANGE in hgk call
authorTK Soh <teekaysoh@yahoo.com>
Wed, 27 Sep 2006 08:27:16 -0500
changeset 3180 eb0906ebba81
parent 3179 76ab39df0917
child 3182 f6c36cc92d02
hgk: fix mixup of --limit and REVRANGE in hgk call
hgext/hgk.py
--- a/hgext/hgk.py	Wed Sep 27 12:08:33 2006 -0700
+++ b/hgext/hgk.py	Wed Sep 27 08:27:16 2006 -0500
@@ -279,8 +279,10 @@
 def view(ui, repo, *etc, **opts):
     "start interactive history viewer"
     os.chdir(repo.root)
-    optstr = ' '.join(['--%s %s' % (k, v) for k, v in opts.iteritems()])
-    os.system(ui.config("hgk", "path", "hgk") + " %s %s" % (optstr, " ".join(etc)))
+    optstr = ' '.join(['--%s %s' % (k, v) for k, v in opts.iteritems() if v])
+    cmd = ui.config("hgk", "path", "hgk") + " %s %s" % (optstr, " ".join(etc))
+    ui.debug("running %s\n" % cmd)
+    os.system(cmd)
 
 cmdtable = {
     "view": (view,