Py3: UASTRINGS should be indexed by and return bytes

This commit is contained in:
Shadab Zafar 2016-06-05 23:10:55 +05:30 committed by Maximilian Hils
parent da38ce2e6e
commit 78b2fa3a13

View File

@ -88,7 +88,7 @@ class ShortcutUserAgent(_HeaderMixin, base.OptionsOrValue):
def values(self, settings):
value = self.value.val
if self.option_used:
value = user_agents.get_by_shortcut(value.lower())[2]
value = user_agents.get_by_shortcut(value.lower().decode())[2].encode()
return self.format_header(
self.key.get_generator(settings),