This commit is contained in:
Martin Mahner 2012-04-20 11:48:26 +02:00
parent a46b7b6f5a
commit 74cd9345ae
2 changed files with 8 additions and 6 deletions

View file

@ -11,12 +11,13 @@ import datetime
EXPIRE_CHOICES = (
(3600, _(u'In one hour')),
(3600*24*7, _(u'In one week')),
(3600*24*30, _(u'In one month')),
(3600 * 24 * 7, _(u'In one week')),
(3600 * 24 * 30, _(u'In one month')),
#(3600*24*30*12*100, _(u'Save forever')), # 100 years, I call it forever ;)
)
EXPIRE_DEFAULT = 3600*24*30
EXPIRE_DEFAULT = 3600 * 24 * 30
class SnippetForm(forms.ModelForm):
lexer = forms.ChoiceField(choices=LEXER_LIST, initial=LEXER_DEFAULT, label=_(u'Lexer'))
@ -91,6 +92,7 @@ USERPREFS_FONT_CHOICES = [(None, _(u'Default'))] + [
USERPREFS_SIZES = [(None, _(u'Default'))] + [(i, '%dpx' % i) for i in range(5, 25)]
class UserSettingsForm(forms.Form):
default_name = forms.CharField(label=_(u'Default Name'), required=False)

View file

@ -2,9 +2,9 @@
import threading
from django.conf import settings
from django.core.mail.backends.base import BaseEmailBackend
from subprocess import Popen,PIPE
from subprocess import Popen, PIPE
class EmailBackend(BaseEmailBackend):
def __init__(self, fail_silently=False, **kwargs):