Skip to content

Commit

Permalink
Included missing comma reported in #20
Browse files Browse the repository at this point in the history
  • Loading branch information
rochacbruno committed Aug 5, 2012
1 parent bb81379 commit 8b3faae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/datamodel/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self):
self.mail_options = [
Field("server", "string", notnull=True, default="logging"),
Field("sender", "string", notnull=True, default="mail@domain.com"),
Field("login", "string", notnull=False default="teste:1234"),
Field("login", "string", notnull=False, default="teste:1234"),
Field("setuptime", "datetime", notnull=True),
]

Expand Down

0 comments on commit 8b3faae

Please sign in to comment.