Skip to content

Commit

Permalink
Fix import error uncovered by nose.
Browse files Browse the repository at this point in the history
  • Loading branch information
tseaver committed Feb 23, 2015
1 parent 4b03c85 commit a9dc91a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/zope/tal/timer.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

from cStringIO import StringIO

from zope.tal.driver import FILE, compilefile, interpretit
from zope.tal.driver import compilefile, interpretit


def main():
Expand All @@ -34,7 +34,7 @@ def main():
if o == "-n":
count = int(a)
if not args:
args = [FILE]
raise ValueError("No args")
for file in args:
print(file)
dummyfile = StringIO()
Expand Down

0 comments on commit a9dc91a

Please sign in to comment.