diff --git a/.travis.yml b/.travis.yml index 73d7172..7742518 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,9 +2,7 @@ language: python python: - "2.6" - "2.7" - - "3.2" env: - - DJANGO=1.3.7 - DJANGO=1.4.8 - DJANGO=1.5.4 install: @@ -13,6 +11,6 @@ install: - pip install -q mock --use-mirrors - pip install -q pep8 --use-mirrors before_script: - - "pep8 --exclude=migrations --ignore=E501,E225 src" + - "pep8 --exclude=migrations --ignore=E501,E225 eveigb" script: - python setup.py test \ No newline at end of file diff --git a/eveigb/context_processors.py b/eveigb/context_processors.py index 6630d00..1a0c7fd 100644 --- a/eveigb/context_processors.py +++ b/eveigb/context_processors.py @@ -3,4 +3,4 @@ def igb(request): 'is_igb': request.is_igb, 'is_igb_trusted': request.is_igb_trusted, } - return ctx \ No newline at end of file + return ctx diff --git a/eveigb/models.py b/eveigb/models.py index 0f02227..137941f 100644 --- a/eveigb/models.py +++ b/eveigb/models.py @@ -1 +1 @@ -from django.db import models \ No newline at end of file +from django.db import models diff --git a/eveigb/templatetags/igb.py b/eveigb/templatetags/igb.py index 3021f9a..47d579d 100644 --- a/eveigb/templatetags/igb.py +++ b/eveigb/templatetags/igb.py @@ -10,4 +10,4 @@ def eve_mail_link(context): return { 'igb': context['is_igb'], 'gate_base': getattr(settings, 'EVE_GATE_BASE', 'https://gate.eveonline.com') - } \ No newline at end of file + } diff --git a/eveigb/tests.py b/eveigb/tests.py index 7fda789..d4ce67a 100644 --- a/eveigb/tests.py +++ b/eveigb/tests.py @@ -131,4 +131,4 @@ class IGBMiddlewareTest(TestCase): }) self.im.process_request(request) self.assertEqual(request.is_igb, False) - self.assertEqual(request.is_igb_trusted, False) \ No newline at end of file + self.assertEqual(request.is_igb_trusted, False)