Skip to content

Commit

Permalink
[refs #296 #297] Derp; fixing splitting of arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
carlio committed Nov 22, 2018
1 parent 2ea3e7f commit 015301f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prospector/config/datatype.py
Expand Up @@ -6,6 +6,6 @@
class OutputChoice(Choice):
def sanitize(self, value):
parsed = re.split(r'[;:]', value)
output_format, output_targets = parsed[0], parsed[:1]
output_format, output_targets = parsed[0], parsed[1:]
validated_format = super(OutputChoice, self).sanitize(output_format)
return (output_format, output_targets)

0 comments on commit 015301f

Please sign in to comment.