]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
trailing-whitespace eradication, no functional changes
authorBrian Warner <warner@allmydata.com>
Thu, 1 Nov 2007 22:34:28 +0000 (15:34 -0700)
committerBrian Warner <warner@allmydata.com>
Thu, 1 Nov 2007 22:34:28 +0000 (15:34 -0700)
src/allmydata/util/find_exe.py

index aa02e9b3e0e31b53ffb10c01cf3bbec1039d36ff..22a2f1bb90d3c2c319bf7a30b83f288a98601b21 100644 (file)
@@ -15,7 +15,7 @@ def find_exe(exename):
     exes = which(exename)
     exe = exes and exes[0]
     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):
         path, ext = os.path.splitext(exe)
         if ext.lower() in [".exe", ".bat",]: