summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorDonald Stufft <donald@stufft.io>2014-12-23 06:22:31 -0500
committerDonald Stufft <donald@stufft.io>2014-12-23 07:38:23 -0500
commit2084e41347956d7970e4dbdbea74c9183e38f4c1 (patch)
tree2096f1f47ab1c5215ba4bcd4776573b6ca32ac6f /tasks
parent39990a37a1e3e7c270fb4f4259ee1d4a095dfa9e (diff)
downloadpip-2084e41347956d7970e4dbdbea74c9183e38f4c1.tar.gz
Fix pep8 issue
Diffstat (limited to 'tasks')
-rw-r--r--tasks/generate.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tasks/generate.py b/tasks/generate.py
index 7f7d874ef..098f9f483 100644
--- a/tasks/generate.py
+++ b/tasks/generate.py
@@ -104,8 +104,9 @@ except ImportError:
except TypeError:
for j, c in enumerate(iterbytes(chunk)):
if _b85dec[c] is None:
- raise ValueError('bad base85 character at position %d'
- % (i + j))
+ raise ValueError(
+ 'bad base85 character at position %d' % (i + j)
+ )
raise
try:
out.append(packI(acc))