Commit 696afcad authored by wim glenn's avatar wim glenn

fix for regression - spurious "Provides-Extra:" generated in metadata

parent 9e554095
...@@ -89,7 +89,8 @@ def write_pkg_file(self, file): ...@@ -89,7 +89,8 @@ def write_pkg_file(self, file):
) )
if self.provides_extras: if self.provides_extras:
for extra in self.provides_extras: for extra in self.provides_extras:
file.write('Provides-Extra: %s\n' % extra) if extra:
file.write('Provides-Extra: %s\n' % extra)
# from Python 3.4 # from Python 3.4
......
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