Mercurial > hg
changeset 1345:c5594ff3f95c
hgk: Allow specifying hgk path in [hgk]path
author | mpm@selenic.com |
---|---|
date | Fri, 23 Sep 2005 19:41:45 -0700 |
parents | ca0e27e05de3 |
children | 88a9c75dc76a |
files | contrib/hgk.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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'),