From 1c5fd184655a1a3225a01b06675f8ae60ea3dc1a Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Thu, 15 Mar 2012 00:31:12 +0100 Subject: [PATCH] Python 3 fixes (travis config). --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7effe4cc..470a635d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,5 +7,5 @@ python: script: python tests/tests.py install: - pip install requests pygments - - "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]] || [[ $TRAVIS_PYTHON_VERSION == '3.1' ]]; then echo pip install argparse; fi" + - "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]] || [[ $TRAVIS_PYTHON_VERSION == '3.1' ]]; then pip install argparse; fi"