Skip to content

Commit fa0a289

Browse files
committed
Fixed a list concatenation bug in changes made to setup.py
1 parent 2784792 commit fa0a289

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
INSTALL_REQUIRES = ['pyparsing >= 2.0.1', 'pyperclip', 'six']
6565
if sys.platform.startswith('win'):
66-
INSTALL_REQUIRES += 'pyreadline'
66+
INSTALL_REQUIRES += ['pyreadline']
6767

6868
# unittest.mock was added in Python 3.3. mock is a backport of unittest.mock to all versions of Python
6969
TESTS_REQUIRE = ['mock', 'pytest']

0 commit comments

Comments
 (0)