Skip to content

Commit

Permalink
Merge pull request #29 from rmb938/patch-1
Browse files Browse the repository at this point in the history
This fixes an AttributeError
  • Loading branch information
sjkingo authored Oct 21, 2016
2 parents 1119275 + 53ad37b commit c44b9d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virtualenvapi/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def _execute(self, args, log=True):
prog = args[0]
if prog[0] != os.sep:
prog = os.path.join(self.path, prog)
raise OSError('%s: %s' % (prog, six.u(e)))
raise OSError('%s: %s' % (prog, six.u(e.message)))
except subprocess.CalledProcessError as e:
output, error = e.output
e.output = output
Expand Down

0 comments on commit c44b9d6

Please sign in to comment.