summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-04-11 07:17:08 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-04-11 07:17:08 (GMT)
commitb94a368ff437427897c6161f28a88866b7ee3982 (patch)
treecb4c7d543e8f16acbe59e4a2ff18aa4bdbefdafb
parent44fe0e4b8d510dfc82903d2a45579e10a1bcb005 (diff)
downloadcpython-b94a368ff437427897c6161f28a88866b7ee3982.zip
cpython-b94a368ff437427897c6161f28a88866b7ee3982.tar.gz
cpython-b94a368ff437427897c6161f28a88866b7ee3982.tar.bz2
Add whitespace after comma
-rw-r--r--Lib/inspect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py
index af911e0..2e4d987 100644
--- a/Lib/inspect.py
+++ b/Lib/inspect.py
@@ -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):