From 7ac614e763a390ffcb83c5e58d3281267bb62943 Mon Sep 17 00:00:00 2001 From: Erik Rose Date: Mon, 4 Apr 2016 16:48:15 -0400 Subject: [PATCH] Update pipstrap to 1.1.1. Report crashes without crashing under Python 2.6. --- letsencrypt-auto-source/pieces/pipstrap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/letsencrypt-auto-source/pieces/pipstrap.py b/letsencrypt-auto-source/pieces/pipstrap.py index 016f7ca1377..505f8ca7287 100755 --- a/letsencrypt-auto-source/pieces/pipstrap.py +++ b/letsencrypt-auto-source/pieces/pipstrap.py @@ -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 @@ -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: