diff options
author | mathieui <mathieui@mathieui.net> | 2015-02-10 21:18:09 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2015-02-10 21:18:09 +0100 |
commit | ca21aa7bb02ffa2ac9dceb7d1be448ce9882d920 (patch) | |
tree | 2a65294131b1632573b70df4639b0680592547f0 | |
parent | 14b58c528e630ad8528099525f59e896a1cdaec2 (diff) | |
download | poezio-ca21aa7bb02ffa2ac9dceb7d1be448ce9882d920.tar.gz poezio-ca21aa7bb02ffa2ac9dceb7d1be448ce9882d920.tar.bz2 poezio-ca21aa7bb02ffa2ac9dceb7d1be448ce9882d920.tar.xz poezio-ca21aa7bb02ffa2ac9dceb7d1be448ce9882d920.zip |
Fix the doc path
“html” and “source” were inverted
-rwxr-xr-x | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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'}) |