Skip to content

Commit

Permalink
Fix flake8 error during Python 2.6 Travis builds
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanss committed Sep 4, 2016
1 parent 731f8d2 commit 2787ed1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ python:

install:
- python setup.py install
- pip install flake8
- if [[ $TRAVIS_PYTHON_VERSION == 2.6 ]]; then pip install flake8==2.6.2; fi
- if [[ $TRAVIS_PYTHON_VERSION != 2.6 ]]; then pip install flake8; fi
- pip install coveralls

before_script:
Expand Down

0 comments on commit 2787ed1

Please sign in to comment.