diff -r 88899b43810b -r 2dcf980521a9 cobalt.py --- a/cobalt.py Mon Sep 29 04:15:59 2014 +0300 +++ b/cobalt.py Mon Sep 29 04:19:10 2014 +0300 @@ -210,9 +210,9 @@ def get_incoming_data (zanrepo, rev, template): try: if rev != '': - return zanrepo.hg_command ('incoming', '../zanstablecopy', '--quiet', '-r', rev, '--template', template) + return zanrepo.hg_command ('incoming', '--quiet', '-r', rev, '--template', template) else: - return zanrepo.hg_command ('incoming', '../zanstablecopy', '--quiet', '--template', template) + return zanrepo.hg_command ('incoming', '--quiet', '--template', template) #fi except: pass @@ -418,7 +418,7 @@ #done if len (commits_to_pull) > 0: - pull_args = ['pull', '../zanstablecopy'] + pull_args = ['pull'] for commit in commits_to_pull: pull_args.append ('-r');