Skip to content

Commit

Permalink
Fix lookup of dir
Browse files Browse the repository at this point in the history
  • Loading branch information
timgates42 committed Jan 13, 2021
1 parent ecb3da4 commit 784895e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/meticulous/_submit.py
Expand Up @@ -448,10 +448,11 @@ def push_commit(repodir, add_word):
return from_branch, to_branch


def amend_commit(repodir, from_branch, to_branch):
def amend_commit(reposave, from_branch, to_branch):
"""
Update commit message to include issue number
"""
repodir = reposave["repodir"]
git = local["git"]
# plumbum bug workaround
os.chdir(pathlib.Path.home())
Expand Down

0 comments on commit 784895e

Please sign in to comment.