Add whitespace after comma

This commit is contained in:
Neal Norwitz 2006-04-11 07:17:08 +00:00
parent 44fe0e4b8d
commit b94a368ff4
1 changed files with 1 additions and 1 deletions

View File

@ -353,7 +353,7 @@ def getsourcefile(object):
if 'b' in mode and string.lower(filename[-len(suffix):]) == suffix:
# Looks like a binary file. We want to only return a text file.
return None
if os.path.exists(filename) or hasattr(getmodule(object),'__loader__'):
if os.path.exists(filename) or hasattr(getmodule(object), '__loader__'):
return filename
def getabsfile(object):