]> granicus.if.org Git - python/commitdiff
Add whitespace after comma
authorNeal Norwitz <nnorwitz@gmail.com>
Tue, 11 Apr 2006 07:17:08 +0000 (07:17 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Tue, 11 Apr 2006 07:17:08 +0000 (07:17 +0000)
Lib/inspect.py

index af911e012b4dcbe0cf293d7b1d99841c309e8774..2e4d987bd8e59eb3edbcb82b5e88581faf6c0ecd 100644 (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):