From 44c07ffc8cb053439e0ec408b2024a6964b3244f Mon Sep 17 00:00:00 2001 From: Adrien Ferrand Date: Thu, 18 Apr 2019 18:42:19 +0200 Subject: [PATCH] Fix separator --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f03049de4..16cba8fb1 100644 --- a/setup.py +++ b/setup.py @@ -59,7 +59,7 @@ install_requires = [ # So this dependency is not added for old Linux distributions with old setuptools, # in order to allow these systems to build certbot from sources. if StrictVersion(setuptools_version) >= StrictVersion('36.2'): - install_requires.append('pywin32 : sys.platform == \'win32\'') + install_requires.append('pywin32 ; sys.platform == \'win32\'') dev_extras = [ 'astroid==1.6.5',