Skip to content
This repository has been archived by the owner on Dec 11, 2021. It is now read-only.

Commit

Permalink
Fix style issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Ferrier committed Dec 15, 2014
1 parent 6f63215 commit fd2d216
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions email2pdf_unittest
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def touch(fname):
def timerange(start_time, end_time):
start_time = start_time.replace(microsecond=0)
end_time = end_time.replace(microsecond=0)
for n in range(int ((end_time - start_time).seconds) + 1):
for n in range(int((end_time - start_time).seconds) + 1):
yield start_time + timedelta(0, n)


Expand Down Expand Up @@ -104,7 +104,7 @@ class BaseTestClasses:
myInput = None
else:
myStdin = PIPE
myInput = input=bytes(textMessage, 'UTF-8')
myInput = bytes(textMessage, 'UTF-8')

if outputDirectory:
options.extend(['-d', outputDirectory])
Expand Down

0 comments on commit fd2d216

Please sign in to comment.