Skip to content

Commit

Permalink
fixed small comment error
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Venturini committed Jul 29, 2016
1 parent 56e549a commit d7554ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions graphite_beacon/handlers/smtp.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ def notify(self, level, *args, **kwargs):
#msg['From'] = args[0].options["smtp"]["from"]
msg['From'] = ", ".join(args[0].options["smtp"]["from"])
except Exception as e:
#msg['From'] = self.options['from']
msg['From'] = ", ".join(args[0].options["smtp"]["from"])
msg['From'] = self.options['from']
#msg['From'] = ", ".join(args[0].options["smtp"]["from"])
try:
#msg['To'] = args[0].options["smtp"]["to"]
msg['To'] = ", ".join(args[0].options["smtp"]["to"])
Expand Down

0 comments on commit d7554ef

Please sign in to comment.