Skip to content

Commit

Permalink
Merge pull request #83 from magfest/public-resync-2017-05-09-2
Browse files Browse the repository at this point in the history
Adding missing unicode_literals imports
  • Loading branch information
RobRuana authored May 10, 2017
2 parents e7aaa2c + a01ff76 commit b13e6c2
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 1 deletion.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ before_install:
- sudo apt-get install -y build-essential libcap-dev
install:
- pip install tox
- pip install -r test_requirements.txt
- if [[ $TOX_ENV == py27 ]] || [[ $TOX_ENV == py35 ]]; then
pip install coveralls;
fi
Expand Down
1 change: 1 addition & 0 deletions sideboard/lib/_profiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def some_interesting_function():
profiling.strip_dirs = False
"""
from __future__ import unicode_literals
import io
import os
import os.path
Expand Down
1 change: 1 addition & 0 deletions sideboard/tests/test_imports.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from __future__ import unicode_literals
import os
import shutil
import tempfile
Expand Down
1 change: 1 addition & 0 deletions sideboard/tests/test_profiler.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from __future__ import unicode_literals
from sideboard.lib import cleanup_profiler, profile
from sideboard.config import config

Expand Down

0 comments on commit b13e6c2

Please sign in to comment.