ソースを参照

Process files in alphabetical order

Jonas Borgström 14 年 前
コミット
5f75b41fc4
1 ファイル変更1 行追加1 行削除
  1. 1 1
      darc/archiver.py

+ 1 - 1
darc/archiver.py

@@ -97,7 +97,7 @@ class Archiver(object):
             except OSError, e:
                 self.print_error('%s: %s', path, e)
             else:
-                for filename in entries:
+                for filename in sorted(entries):
                     self._process(archive, cache, patterns, skip_inodes,
                                   os.path.join(path, filename))
         elif stat.S_ISLNK(st.st_mode):