1
0
Fork 0

removed quotes

This commit is contained in:
Christian Kühnel 2019-10-18 15:28:43 +02:00
parent d005ee7a9f
commit 195b9aaaab

View file

@ -37,7 +37,7 @@ def _get_parent_hash(diff_id: str, phab:Phabricator) -> str:
def _git_checkout(git_hash:str):
subprocess.check_call('git reset --hard "{}"'.format(git_hash), shell=True)
subprocess.check_call('git reset --hard {}'.format(git_hash), shell=True)
subprocess.check_call('git clean -fdx', shell=True)