Remove the redundant if clause in gunicorn/workers/workertmp.py.

This commit is contained in:
Berker Peksag 2014-05-15 00:53:47 +03:00
parent b9d291e692
commit 2f932664fd

View File

@ -10,10 +10,8 @@ import tempfile
from gunicorn import util
PLATFORM = platform.system()
if PLATFORM.startswith('CYGWIN'):
IS_CYGWIN = True
else:
IS_CYGWIN = False
IS_CYGWIN = PLATFORM.startswith('CYGWIN')
class WorkerTmp(object):