summaryrefslogtreecommitdiff
path: root/wwwbin
diff options
context:
space:
mode:
Diffstat (limited to 'wwwbin')
-rwxr-xr-xwwwbin/clean-dups.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wwwbin/clean-dups.py b/wwwbin/clean-dups.py
index dfda371..e0371b4 100755
--- a/wwwbin/clean-dups.py
+++ b/wwwbin/clean-dups.py
@@ -95,7 +95,7 @@ def compare(f1, f2):
def find_old(files):
- return sorted(files, compare)
+ return sorted(files, key=cmp_to_key(compare))
files = {}
dupes = {}