Skip to content

Commit

Permalink
coffee
Browse files Browse the repository at this point in the history
  • Loading branch information
Atticus1806 committed Oct 19, 2022
1 parent 0fda4c1 commit 0ef026d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion report/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ def run(self):
["mail", "-s", subject, self.mail_address], stdin=p1.stdout
)
else:
out = subprocess.run(["mail", "-s", subject, self.mail_address], input="", check=True)
out = subprocess.run(
["mail", "-s", subject, self.mail_address], input="", check=True
)
value = out.returncode
self.out_status.set(value)

0 comments on commit 0ef026d

Please sign in to comment.