From ca21aa7bb02ffa2ac9dceb7d1be448ce9882d920 Mon Sep 17 00:00:00 2001 From: mathieui Date: Tue, 10 Feb 2015 21:18:09 +0100 Subject: Fix the doc path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “html” and “source” were inverted --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index bc9c218b..0334c1e9 100755 --- a/setup.py +++ b/setup.py @@ -99,8 +99,8 @@ setup(name="poezio", entry_points={'console_scripts': ['poezio = poezio:main']}, data_files=([('share/man/man1/', ['data/poezio.1']), ('share/poezio/', ['README.rst', 'COPYING', 'CHANGELOG'])] - + find_doc('share/doc/poezio/html', 'source') - + find_doc('share/doc/poezio/source', 'build/html')), + + find_doc('share/doc/poezio/source', 'source') + + find_doc('share/doc/poezio/html', 'build/html')), install_requires=['slixmpp', 'aiodns'], extras_require={'OTR plugin': 'python-potr>=1.0', 'Screen autoaway plugin': 'pyinotify==0.9.4'}) -- cgit v1.2.3