Skip to content

Commit

Permalink
Remove "/" from chapter names
Browse files Browse the repository at this point in the history
This tries to fix #26
  • Loading branch information
schemen committed Jun 24, 2019
1 parent d0b6dbc commit bde3e25
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bin/Helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -578,6 +578,9 @@ def sanetizeName(name):
if ":" in name:
name = name.replace(":", "_")
return name
elif "/" in name:
name = name.replace("/", "")
return name
else:
return name

Expand Down

0 comments on commit bde3e25

Please sign in to comment.