From 519fc8a8d61c24cc0033b976aab786c781212a15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodolfo=20Garc=C3=ADa=20Pe=C3=B1as=20=28kix=29?= Date: Sun, 25 Oct 2020 19:21:58 +0100 Subject: [PATCH] Removed comment about python2 --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 3b9b347..40a50fa 100644 --- a/setup.py +++ b/setup.py @@ -45,8 +45,7 @@ class TestCommand(Command): # set credentials and OfflineImap command to be executed: OLITestLib(cred_file='./test/credentials.conf', cmd='./offlineimap.py') suite = TestLoader().discover('./test/tests') - #TODO: failfast does not seem to exist in python2.6? - TextTestRunner(verbosity=2,failfast=True).run(suite) + TextTestRunner(verbosity=2, failfast=True).run(suite) setup(name = "offlineimap",