1
0
mirror of https://github.com/ciromattia/kcc synced 2025-12-13 01:36:27 +00:00

Fixed dot processing in directory names

This commit is contained in:
Paweł Jastrzębski
2017-11-10 17:32:34 +01:00
parent 829a5f25e7
commit ac81a6be4b

View File

@@ -900,6 +900,7 @@ def createNewTome():
def slugify(value, isdir):
if isdir:
value = slugifyExt(value, regex_pattern=r'[^-a-z0-9_\.]+')
value = value.rstrip('.')
else:
value = slugifyExt(value)
value = sub(r'0*([0-9]{4,})', r'\1', sub(r'([0-9]+)', r'0000\1', value, count=2))