summaryrefslogtreecommitdiff
path: root/cpp/config/findSliceFiles.py
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/config/findSliceFiles.py')
-rw-r--r--cpp/config/findSliceFiles.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/cpp/config/findSliceFiles.py b/cpp/config/findSliceFiles.py
index 5b3b283a4e6..cffe292cb59 100644
--- a/cpp/config/findSliceFiles.py
+++ b/cpp/config/findSliceFiles.py
@@ -32,13 +32,13 @@ print >> out, "SLICEFILES =",
first = True
for root, dirs, files in os.walk(sys.argv[1]):
for name in files:
- if not name.startswith(".") and name.endswith(".ice"):
- if not first:
- print >> out, "\\"
- print >> out, " ",
- else:
- first = False
- print >> out, os.path.join(root, name),
+ if not name.startswith(".") and name.endswith(".ice"):
+ if not first:
+ print >> out, "\\"
+ print >> out, " ",
+ else:
+ first = False
+ print >> out, os.path.join(root, name),
print >> out, "\n"
sys.exit(0)