Skip to content

Commit

Permalink
Remove parentheses when joining list
Browse files Browse the repository at this point in the history
  • Loading branch information
dixonscottr committed Jan 12, 2018
1 parent 4c4dd6a commit be9ceb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion checks/libs/win/pdhbasecheck.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __init__(self, name, init_config, agentConfig, instances, counter_list):

cfg_tags = instance.get('tags')
if cfg_tags is not None:
tags = (",").join(cfg_tags)
tags = ",".join(cfg_tags)
self._tags[key] = list(tags) if tags else []
remote_machine = None
host = instance.get('host')
Expand Down

0 comments on commit be9ceb8

Please sign in to comment.