Skip to content

Commit

Permalink
fixup! Provides check_output() for Python 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Dec 2, 2014
1 parent 0fb68ab commit fb825bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reprounzip/reprounzip/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def check_output(*popenargs, **kwargs):
cmd = kwargs.get('args')
if cmd is None:
cmd = [popenargs[0]]
raise subprocess.CalledProcessError(retcode, cmd, output=stdout)
raise subprocess.CalledProcessError(retcode, cmd)
return stdout


Expand Down

0 comments on commit fb825bb

Please sign in to comment.