Skip to content

Commit c896c54

Browse files
committed
Fix pep8 error
1 parent c4a8341 commit c896c54

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ def build_extension(self, ext):
4747
with codecs.open(os.path.join(os.path.abspath(os.path.dirname(
4848
__file__)), 'aiohttp', '__init__.py'), 'r', 'latin1') as fp:
4949
try:
50-
version = re.findall(r"^__version__ = '([^']+)'\r?$", fp.read(), re.M)[0]
50+
version = re.findall(r"^__version__ = '([^']+)'\r?$",
51+
fp.read(), re.M)[0]
5152
except IndexError:
5253
raise RuntimeError('Unable to determine version.')
5354

0 commit comments

Comments
 (0)