From f9329fe5b6d699d82ae9a3915dcb1b3f411cbb59 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 18 Feb 2017 10:09:29 +0530 Subject: [PATCH] ... --- setup/resources.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup/resources.py b/setup/resources.py index d3c9614c6f..de104eb5a9 100644 --- a/setup/resources.py +++ b/setup/resources.py @@ -255,7 +255,7 @@ class CACerts(Command): # {{{ # }}} -class RecentUAs(Command): +class RecentUAs(Command): # {{{ description = 'Get updated list of recent browser user agents' UA_PATH = os.path.join(Command.RESOURCES, 'common-user-agents.txt') @@ -289,6 +289,7 @@ class RecentUAs(Command): raise RuntimeError('Failed to download list of common user agents') with open(self.UA_PATH, 'wb') as f: f.write('\n'.join(lines).encode('ascii')) +# }}} class RapydScript(Command): # {{{