From b94a368ff437427897c6161f28a88866b7ee3982 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Tue, 11 Apr 2006 07:17:08 +0000 Subject: [PATCH] Add whitespace after comma --- Lib/inspect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/inspect.py b/Lib/inspect.py index af911e012b..2e4d987bd8 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): -- 2.50.1