Skip to content

Commit

Permalink
Print the current working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
Mariatta authored Sep 22, 2017
1 parent d836752 commit d9bd808
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backport/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def backport_task(commit_hash, branch, *, issue_number, created_by, merged_by):
if "cpython" in os.listdir('.'):
os.chdir('./cpython')
else:
print(f"pwd: {os.pwd()}, listdir: {os.listdir('.')}")
print(f"pwd: {os.getcwd()}, listdir: {os.listdir('.')}")
util.comment_on_pr(issue_number,
f"""{util.get_participants(created_by, merged_by)}, Something is wrong... I can't backport for now.
Please backport using [cherry_picker](https://pypi.org/project/cherry-picker/) on command line.
Expand Down

0 comments on commit d9bd808

Please sign in to comment.