Issue #12780: Removed checks in logging for .pyc/.pyo in __file__.

This commit is contained in:
Vinay Sajip 2011-08-19 07:14:40 +01:00
parent 729a42f263
commit 2da23caec0
1 changed files with 0 additions and 2 deletions

View File

@ -61,8 +61,6 @@ __date__ = "07 February 2010"
#
if hasattr(sys, 'frozen'): #support for py2exe
_srcfile = "logging%s__init__%s" % (os.sep, __file__[-4:])
elif __file__[-4:].lower() in ['.pyc', '.pyo']:
_srcfile = __file__[:-4] + '.py'
else:
_srcfile = __file__
_srcfile = os.path.normcase(_srcfile)