Skip to content

Commit

Permalink
Fix the filename in error message (pylint)
Browse files Browse the repository at this point in the history
  • Loading branch information
mscherer committed Apr 14, 2015
1 parent f25f2d9 commit 2d9097e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v2/ansible/plugins/action/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ def _make_tmp_path(self):
# Catch failure conditions, files should never be
# written to locations in /.
if rc == '/':
raise AnsibleError('failed to resolve remote temporary directory from %s: `%s` returned empty string' % (basetmp, cmd))
raise AnsibleError('failed to resolve remote temporary directory from %s: `%s` returned empty string' % (basefile, cmd))

return rc

Expand Down

0 comments on commit 2d9097e

Please sign in to comment.