Commit e909e1cb authored by Benoit Pierre's avatar Benoit Pierre

Fix Python 2.6 support

parent 10bcb50a
......@@ -38,7 +38,7 @@ class sdist(sdist_add_defaults, orig.sdist):
negative_opt = {}
README_EXTENSIONS = ['', '.rst', '.txt', '.md']
READMES = tuple('README{}'.format(ext) for ext in README_EXTENSIONS)
READMES = tuple('README{0}'.format(ext) for ext in README_EXTENSIONS)
def run(self):
self.run_command('egg_info')
......
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