flupke / rainbow-saddle

A wrapper around gunicorn to handle graceful restarts correctly
48 stars 12 forks source link

Fix except syntax issue in Python 3 #2

Closed binderclip closed 8 years ago

binderclip commented 8 years ago

When in Python3, except OSError, err: will be syntax error.

Get the fix from here: exception - try ... except ... as error in Python 2.5 - Python 3.x - Stack Overflow

flupke commented 8 years ago

Great thank you very much!

flupke commented 8 years ago

I released 0.2.1 on pypi with your changes