diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-02-01 17:09:49 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-02-01 17:09:49 +0000 |
commit | abada90e3f84dc703b8ddc9efcbed8a946fadead (patch) | |
tree | 2c6f9dccd510ea97cb927a7bd635422efaae547a /cpp/config/findSliceFiles.py | |
parent | removing trace message (diff) | |
download | ice-abada90e3f84dc703b8ddc9efcbed8a946fadead.tar.bz2 ice-abada90e3f84dc703b8ddc9efcbed8a946fadead.tar.xz ice-abada90e3f84dc703b8ddc9efcbed8a946fadead.zip |
Expanded tabs into spaces
Diffstat (limited to 'cpp/config/findSliceFiles.py')
-rw-r--r-- | cpp/config/findSliceFiles.py | 14 |
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) |