commit d2a0be85d83dd6167865aa52fe12baae75562f47 Author: Damian Johnson atagar@torproject.org Date: Mon Dec 5 19:12:51 2016 -0800
Fix unit test for data file installation
Reformatting broke test_installs_all_data_files. It was a bit better so I might re-introduce the change later - just don't want to hassle with rewriting the test right now. --- setup.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/setup.py b/setup.py index ac780d6..6b4922d 100644 --- a/setup.py +++ b/setup.py @@ -73,12 +73,8 @@ try: keywords = 'tor onion controller', scripts = ['tor-prompt'], provides = ['stem'], - package_data = { - 'stem': ['cached_tor_manual.cfg', 'settings.cfg'], - 'stem.descriptor': ['fallback_directories.cfg'], - 'stem.interpreter': ['settings.cfg'], - 'stem.util': ['ports.cfg'], - }, classifiers = [ + package_data = {'stem': ['cached_tor_manual.cfg', 'settings.cfg'], 'stem.descriptor': ['fallback_directories.cfg'], 'stem.interpreter': ['settings.cfg'], 'stem.util': ['ports.cfg']}, + classifiers = [ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
tor-commits@lists.torproject.org