trailing-whitespace eradication, no functional changes

This commit is contained in:
Brian Warner 2007-11-01 15:34:28 -07:00
parent f425ee3600
commit f714c5915a
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ def find_exe(exename):
exes = which(exename) exes = which(exename)
exe = exes and exes[0] exe = exes and exes[0]
if not exe: if not exe:
exe = os.path.join(sys.prefix, 'scripts', exename + '.py') exe = os.path.join(sys.prefix, 'scripts', exename + '.py')
if os.path.exists(exe): if os.path.exists(exe):
path, ext = os.path.splitext(exe) path, ext = os.path.splitext(exe)
if ext.lower() in [".exe", ".bat",]: if ext.lower() in [".exe", ".bat",]: