Show More
@@ -248,6 +248,8 b" if sys.platform == 'linux2' and os.uname" | |||||
248 | datafiles = [] |
|
248 | datafiles = [] | |
249 | for root in ('templates', 'i18n'): |
|
249 | for root in ('templates', 'i18n'): | |
250 | for dir, dirs, files in os.walk(root): |
|
250 | for dir, dirs, files in os.walk(root): | |
|
251 | dirs[:] = [x for x in dirs if not x.startswith('.')] | |||
|
252 | files = [x for x in files if not x.startswith('.')] | |||
251 | datafiles.append((os.path.join('mercurial', dir), |
|
253 | datafiles.append((os.path.join('mercurial', dir), | |
252 | [os.path.join(dir, file_) for file_ in files])) |
|
254 | [os.path.join(dir, file_) for file_ in files])) | |
253 |
|
255 |
General Comments 0
You need to be logged in to leave comments.
Login now