summaryrefslogtreecommitdiff
path: root/remove_dups.py
diff options
context:
space:
mode:
Diffstat (limited to 'remove_dups.py')
-rwxr-xr-xremove_dups.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/remove_dups.py b/remove_dups.py
index cc94416..706393c 100755
--- a/remove_dups.py
+++ b/remove_dups.py
@@ -85,7 +85,8 @@ def sortKeyFunc(s):
if __name__ == "__main__":
files = glob.glob(f"{directory}/*")
- files.sort(key=sortKeyFunc)
+ print(files)
+ # files.sort(key=sortKeyFunc)
prev_page = []
page_sep = "-"*60 + "\n"