Skip to content

Commit

Permalink
Update pipstrap to 1.1.1.
Browse files Browse the repository at this point in the history
Report crashes without crashing under Python 2.6.
  • Loading branch information
erikrose committed Apr 4, 2016
1 parent 5a71cdd commit 7ac614e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions letsencrypt-auto-source/pieces/pipstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def check_output(*popenargs, **kwargs):
cmd = kwargs.get("args")
if cmd is None:
cmd = popenargs[0]
raise CalledProcessError(retcode, cmd, output=output)
raise CalledProcessError(retcode, cmd)
return output
from sys import exit, version_info
from tempfile import mkdtemp
Expand All @@ -55,7 +55,7 @@ def check_output(*popenargs, **kwargs):
from urllib.parse import urlparse # 3.4


__version__ = 1, 1, 0
__version__ = 1, 1, 1


# wheel has a conditional dependency on argparse:
Expand Down

0 comments on commit 7ac614e

Please sign in to comment.