Skip to content

Commit

Permalink
Fix default value for months and dayweeks for rsync
Browse files Browse the repository at this point in the history
  • Loading branch information
william-gr committed Aug 20, 2013
1 parent 4adf9e1 commit 83c4cc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gui/system/models.py
Expand Up @@ -568,12 +568,12 @@ class Rsync(Model):
)
rsync_month = models.CharField(
max_length=100,
default='1,2,3,4,5,6,7,8,9,a,b,c',
default='*',
verbose_name=_("Month"),
)
rsync_dayweek = models.CharField(
max_length=100,
default="1,2,3,4,5,6,7",
default="*",
verbose_name=_("Day of week"),
)
rsync_user = UserField(
Expand Down

0 comments on commit 83c4cc2

Please sign in to comment.