diff -r ca0e27e05de3 -r c5594ff3f95c contrib/hgk.py --- a/contrib/hgk.py Fri Sep 23 19:38:21 2005 -0700 +++ b/contrib/hgk.py Fri Sep 23 19:41:45 2005 -0700 @@ -316,7 +316,7 @@ def view(ui, repo, *etc): "start interactive history viewer" os.chdir(repo.root) - os.system("hgk " + " ".join(etc)) + os.system(ui.config("hgk", "path", "hgk") + " " + " ".join(etc)) cmdtable = { "view": (view, [], 'hg view'),