diff --git a/CHANGES b/CHANGES index 4fc68fbfc..95f5b9e03 100644 --- a/CHANGES +++ b/CHANGES @@ -54,7 +54,7 @@ forked from Attic: Version 0.16 ------------ -(bugfix release, released on X) +(bugfix release, released on May 16, 2015) - Fix typo preventing the security confirmation prompt from working (#303) - Improve handling of systems with improperly configured file system encoding (#289) - Fix "All archives" output for attic info. (#183) diff --git a/setup.py b/setup.py index d5d548b3d..88dc2564b 100644 --- a/setup.py +++ b/setup.py @@ -35,8 +35,7 @@ try: class Sdist(versioneer.cmd_sdist): def __init__(self, *args, **kwargs): for src in glob('borg/*.pyx'): - cython_compiler.compile(glob('borg/*.pyx'), - cython_compiler.default_options) + cython_compiler.compile(src, cython_compiler.default_options) versioneer.cmd_sdist.__init__(self, *args, **kwargs) def make_distribution(self):