Skip to content

Commit

Permalink
EOF newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
zakx committed Apr 9, 2013
1 parent afebd17 commit 190985f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -36,4 +36,4 @@ nosetests.xml

settings.py
*.db
*.pid
*.pid
2 changes: 1 addition & 1 deletion __init__.py
Expand Up @@ -14,4 +14,4 @@ def get_or_create_user(name, domain):
user = models.User.select(AND(models.User.q.name==name, models.User.q.domain==domain))[0]
except IndexError:
user = models.User(name=name, domain=domain)
return user
return user
2 changes: 1 addition & 1 deletion models.py
Expand Up @@ -38,4 +38,4 @@ class Mail(SQLObject):
In [21]: list(Domain.select(Domain.q.name=="tm.zakx.dess"))
Out[21]: []
"""
"""
2 changes: 1 addition & 1 deletion settings.py-dist
Expand Up @@ -21,4 +21,4 @@ BLACKLIST_HOSTS = ["example.com",]

# SMTPd configuration -- no need to change.
SMTPD_HOST = "127.0.0.1" # IP to bind to
SMTPD_PORT = 2500
SMTPD_PORT = 2500
2 changes: 1 addition & 1 deletion smtpd.py
Expand Up @@ -108,4 +108,4 @@ def main():

return a

application = main()
application = main()
2 changes: 1 addition & 1 deletion test_smtp.py
Expand Up @@ -15,4 +15,4 @@
smtpObj.sendmail(sender, receivers, message)
print "Successfully sent email"
except SMTPException:
print "Error: unable to send email"
print "Error: unable to send email"

0 comments on commit 190985f

Please sign in to comment.