Leave underscores in place (previously they were omitted)
This commit is contained in:
parent
71f41a62fd
commit
ad1d8b4628
@ -11,6 +11,7 @@ for file in argv[1:]:
|
||||
if ch.isalnum()
|
||||
or ch is ' '
|
||||
or ch is '.'
|
||||
or ch is '_' # do not ruin previous work
|
||||
or ch is '-') # dashes are ok
|
||||
)
|
||||
.replace(' ', '_'))
|
||||
|
Loading…
Reference in New Issue
Block a user