Skip to content

Commit

Permalink
Merge pull request #432 from wedebe/patch-1
Browse files Browse the repository at this point in the history
[AutoTimer] Output space-separated tags correctly (#418)
  • Loading branch information
jbleyel authored Mar 22, 2021
2 parents 797370e + eb507e9 commit 862973f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions autotimer/src/AutoTimerConfiguration.py
Original file line number Diff line number Diff line change
Expand Up @@ -671,6 +671,8 @@ def buildConfig(defaultTimer, timers, webif = False):
# Tags
if webif and defaultTimer.tags:
extend((' <e2tags>', stringToXML(' '.join(defaultTimer.tags)), '</e2tags>\n'))
for tag in defaultTimer.tags:
extend((' <e2tag>', stringToXML(tag), '</e2tag>\n'))
else:
for tag in defaultTimer.tags:
extend((' <tag>', stringToXML(tag), '</tag>\n'))
Expand Down

0 comments on commit 862973f

Please sign in to comment.