Convert *args to list

It being a tuple also happens to work, but is somewhat inconsistent.
This commit is contained in:
Florian Bruhin 2018-11-26 23:24:41 +01:00
parent 6b5a92fb2d
commit d2751935e0

View File

@ -737,7 +737,7 @@ class HintManager(QObject):
self._context.baseurl = tabbed_browser.current_url()
except qtutils.QtValueError:
raise cmdexc.CommandError("No URL set for this page yet!")
self._context.args = args
self._context.args = list(args)
self._context.group = group
try: