Skip to content

Commit

Permalink
prefetch: fix error in user-agent parameter handling
Browse files Browse the repository at this point in the history
  • Loading branch information
eigengrau committed Nov 21, 2016
1 parent ead9272 commit e28a333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tts_tools/prefetch/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def parse_args(self):

user_agent = self.settings.user_agent.get()
if user_agent:
commands.append(["--user-agent", user_agent])
commands.extend(["--user-agent", user_agent])

return cli.parser.parse_args(args=commands)

Expand Down

0 comments on commit e28a333

Please sign in to comment.