PEP8 cleanups, further removal of unused code

This commit is contained in:
Roberto Rosario
2014-10-21 19:28:52 -04:00
parent ce39a775ee
commit 2ea48bd1ba
24 changed files with 20 additions and 69 deletions

View File

@@ -1,9 +0,0 @@
from django.utils.translation import ugettext_lazy as _
PAGE_ORIENTATION_PORTRAIT = u'portrait'
PAGE_ORIENTATION_LANDSCAPE = u'landscape'
PAGE_ORIENTATION_CHOICES = (
(PAGE_ORIENTATION_PORTRAIT, _(u'Portrait')),
(PAGE_ORIENTATION_LANDSCAPE, _(u'Landscape')),
)