hgext/hgk.py
changeset 4686 39001f4b7d99
parent 4040 cc08d2543593
child 4730 eadfaa9ec487
--- a/hgext/hgk.py
+++ b/hgext/hgk.py
@@ -272,7 +272,7 @@ def view(ui, repo, *etc, **opts):
     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)
+    util.system(cmd)
 
 cmdtable = {
     "^view": (view,