Commit 8afe6461 authored by Klaus Wölfel's avatar Klaus Wölfel

remove uncompatible char '#' from tagname

parent 9025569b
......@@ -51,7 +51,7 @@ class FluentDirInput(object):
else:
start_index = 0
for filepath in path_list[start_index:]:
tag = filepath.strip('/').replace('/', '.')
tag = filepath.strip('/').replace('#','').replace('/', '.')
result = False
retry_wait = 1
while result is False:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment