From b1462516117a44567b562d0aa3b1eb672aa9cad0 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Thu, 2 Apr 2020 20:29:22 -0700 Subject: [PATCH] Add thank you to stackoverflow credit. --- fileprefix.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fileprefix.py b/fileprefix.py index 49f52c0..dc8198c 100644 --- a/fileprefix.py +++ b/fileprefix.py @@ -21,6 +21,7 @@ IGNORE_EXTENSIONS = ['py', 'lnk', 'ini'] def natural_sorter(x): ''' + Thank you Mark Byers http://stackoverflow.com/a/11150413 ''' convert = lambda text: int(text) if text.isdigit() else text.lower()