Skip to content

Commit

Permalink
release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
heynemann committed Nov 16, 2013
1 parent 6b4ad01 commit 4a7f175
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion octopus/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

__version__ = '0.3.0'
__version__ = '0.3.1'

from octopus.core import Octopus, TimeoutError, ResponseError # NOQA
2 changes: 0 additions & 2 deletions octopus/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,6 @@ def do_work(self):
response = requests.request(method, url, **kwargs)
except requests.ConnectionError:
err = sys.exc_info()[1]
#print err.message.__class__.__module__
#print err.message.__class__.__name__
response = ResponseError(
status_code=500,
body=str(err.message),
Expand Down

0 comments on commit 4a7f175

Please sign in to comment.