Fix %s output in scripts.dev.ua_fetch

This commit is contained in:
Florian Bruhin 2016-08-16 14:06:37 +02:00
parent f4b72d4b24
commit c99d3e7dca

View File

@ -105,7 +105,7 @@ def main():
tab = " "
print(tab + "def complete(self):")
print((2 * tab) + "\"\"\"Complete a list of common user agents.\"\"\"")
print((2 * tab) + "%sout = [")
print((2 * tab) + "out = [")
for browser in ["Firefox", "Safari", "Chrome", "Obscure"]:
for it in filtered[browser]: