@@ -92,7 +92,7 @@ def set_xsel(configp, OSX):
def set_win_colors(config): # pragma: no cover
- if sys.platform.startwith('win'):
+ if sys.platform.startswith('win'):
colorama.init()
@@ -321,7 +321,7 @@ class PyCryptoInstallCommand(install):
install_requires=['pycrypto>=2.6',
'colorama>=0.2.4'],
-if sys.platform.startwith('win'):
+if sys.platform.startswith('win'):
install_requires.append('pyreadeline')