Skip to content

Commit 308aa68

Browse files
committed
Implement replacing multiple dots.
1 parent b276ea0 commit 308aa68

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

fixfn.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Copyright © 2021 R.F. Smith <[email protected]>
66
# SPDX-License-Identifier: MIT
77
# Created: 2021-12-26T09:19:01+0100
8-
# Last modified: 2024-07-30T22:03:34+0200
8+
# Last modified: 2024-07-30T22:05:24+0200
99
"""Fix filenames by removing whitespace and ID numbers from filenames and
1010
making them lower case."""
1111

@@ -16,7 +16,7 @@
1616
import shutil
1717
import sys
1818

19-
__version__ = "2021.12.26"
19+
__version__ = "2024.07.30"
2020

2121

2222
def main():
@@ -44,6 +44,8 @@ def main():
4444
# Remove “waves” (_-_).
4545
newfn, p = re.subn("_-_", args.replacement, newfn)
4646
logging.info(f"replaced {p} instances of waves in “{fn}”")
47+
newfn, p = re.subn("\.+", ".", newfn)
48+
logging.info(f"replaced {p} instances of multiple dots in “{fn}”")
4749
if not args.nolower:
4850
newfn = newfn.lower()
4951
else:

0 commit comments

Comments
 (0)