Skip to content

Commit 074561d

Browse files
committed
remove variable assignment in exception that isn't compatible with python 2.5
1 parent 64f9006 commit 074561d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zencoder/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ def process(self, http_response, content):
129129

130130
return response
131131

132-
except ValueError as e:
132+
except ValueError:
133133
raise ZencoderResponseError(http_response, content)
134134

135135
class Zencoder(object):

0 commit comments

Comments
 (0)