Skip to content

Commit f3e6c6f

Browse files
committed
Fix formatting
1 parent 65694d9 commit f3e6c6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/lsst/sconsUtils/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ def run(self, fileGlob):
265265
# the root directory
266266
filePrefix = "file:"
267267
if a.startswith(filePrefix): # they explicitly said that this was a file
268-
a = os.path.join(self._cwd, a[len(filePrefix) :])
268+
a = os.path.join(self._cwd, a[len(filePrefix):])
269269
else:
270270
try: # see if it's a file
271271
os.stat(a)

0 commit comments

Comments
 (0)