Skip to content

Commit

Permalink
Merge pull request #8 from opapy/feature/django18
Browse files Browse the repository at this point in the history
Feature/django18
  • Loading branch information
opapy authored Nov 17, 2016
2 parents 6df0d24 + ce3072b commit 47029f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion beproud/django/notify/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class NotifySetting(models.Model):

notify_type = models.CharField(_('notify type'), max_length=100, db_index=True)
media = models.CharField(_('media'), max_length=100, choices=MediaChoices(), db_index=True)
send = models.BooleanField(_('send?'))
send = models.BooleanField(_('send?'), default=False)

def __unicode__(self):
return u"%s (%s, %s, %s)" % (self.target, self.notify_type, self.media,
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

setup(
name='bpnotify',
version='0.44',
version='0.45',
description='Notification routing for Django',
author='Ian Lewis',
author_email='ian@beproud.jp',
author='BeProud',
author_email='project@beproud.jp',
url='https://github.com/beproud/bpnotify/',
classifiers=[
'Development Status :: 3 - Alpha',
Expand Down

0 comments on commit 47029f0

Please sign in to comment.