From 7f5225cb70c691876764e6a086d72c1f9f507b7c Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sat, 18 May 2019 22:34:19 +0200 Subject: [PATCH] Fix a setup.py assertion --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 76c54272..ff317bb6 100755 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ readme = open('README.rst').read() + '\n\n' + open('CHANGELOG.rst').read() with open('requirements.txt') as f: install_requires = f.read().splitlines() -assert os.path.isfile("third_party/typeshed/LICENSE"), \ +assert os.path.isfile("jedi/third_party/typeshed/LICENSE"), \ "Please download the typeshed submodule first" setup(name='jedi',