Commit 43c8776a authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 8da9edc8
......@@ -31,7 +31,7 @@ init =
# update [versions] from what is needed by ZEO<X>
for _ in zeo_x['egg_versions'].splitlines():
if _.startswith('#'):
if _ == '' or _.startswith('#'):
continue
egg, eq, version = _.split() # 'transaction = 1.7.0'
assert eq == '='
......
......@@ -38,7 +38,7 @@ init =
# update [versions] from what is needed by ZODB<X>
for _ in zodb_x['egg_versions'].splitlines():
if _.startswith('#'):
if _ == '' or _.startswith('#'):
continue
egg, eq, version = _.split() # 'transaction = 1.7.0'
assert eq == '='
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment