bitly / bitly-api-python

python library to the bitly api
http://github.com/bitly/bitly-api-python
Other
244 stars 92 forks source link

Change except: to except Exception: #1

Closed adamn closed 12 years ago

adamn commented 14 years ago

Currently, when using try: except:, if somebody pushes ctrl-c in any of those loops, the except catches and it continues on. Please change to:

try:
  pass
except Exception:
  raise