From e239b975be8bfafefe61c163a3055d38753b776b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A1ssio=20Botaro?= Date: Wed, 23 Dec 2015 11:19:19 -0200 Subject: [PATCH] Change to re-run AppVeyor --- gluon/widget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gluon/widget.py b/gluon/widget.py index 36b19627..beee5177 100644 --- a/gluon/widget.py +++ b/gluon/widget.py @@ -57,7 +57,7 @@ def run_system_tests(options): minor_version = sys.version_info[1] if major_version == 2: if minor_version in (6,): - sys.stderr.write("Python 2.6\n") + sys.stderr.write('Python 2.6\n') ret = subprocess.call(['unit2', '-v', 'gluon.tests']) elif minor_version in (7,): call_args = [sys.executable, '-m', 'unittest', '-v', 'gluon.tests']