From 59a9c01304edc9fd27289d50ea2454bbb4034f40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Wed, 3 Apr 2019 10:25:46 +0200 Subject: [PATCH] setup: Fix missing comma in a list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Lubomír Sedlář --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b5172792..7d21c8a4 100755 --- a/setup.py +++ b/setup.py @@ -67,7 +67,7 @@ setup( ], extras_require={ ':python_version=="2.7"': [ - 'enum34' + 'enum34', "lockfile", 'dict.sorted', ]