Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0.5, 2.1, and 2.1.1

stable setup: sort source file list before message extraction

This avoids excessive diff output between .pot updates.

The filenames are usually already sorted on the working
copy, but this could change unexpectedly on filesystem
changes.

Changeset d7027beb1c3c

Parent 04ca367f8eeb

by Wagner Bruna

Changes to one file · Browse files at d7027beb1c3c Showing diff from parent 04ca367f8eeb Diff from another changeset...

Change 1 of 1 Show Entire File setup.py Stacked
 
92
93
94
 
95
96
97
 
92
93
94
95
96
97
98
@@ -92,6 +92,7 @@
  for filename in os.listdir(pathname):   if filename.endswith('.py'):   filelist.append(os.path.join(pathname, filename)) + filelist.sort()     potfile = 'tortoisehg.pot'