From b585bd2dfa5e773989c1bcb859a9e21af6727dae Mon Sep 17 00:00:00 2001 From: derAnfaenger Date: Mon, 4 Sep 2017 20:08:09 +0200 Subject: [PATCH] zulip setup.py: Remove redundant directory forward slash. The slash caused pip install ./zulip to fail on Windows with Python 3.5. --- zulip/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zulip/setup.py b/zulip/setup.py index 0acf180..1932074 100755 --- a/zulip/setup.py +++ b/zulip/setup.py @@ -55,7 +55,7 @@ package_info = dict( "examples/send-message", "examples/subscribe", "examples/unsubscribe", - ])] + list(recur_expand('share/zulip', 'integrations/')), + ])] + list(recur_expand('share/zulip', 'integrations')), entry_points={ 'console_scripts': [ 'zulip-send=zulip.send:main',