Skip to content
Snippets Groups Projects
Commit 127624e4 authored by Greg Wilson's avatar Greg Wilson
Browse files

Fixing dangling variable reference

parent be9ea441
Branches
Tags
No related merge requests found
......@@ -32,7 +32,7 @@ class Reporter(object):
if isinstance(location, type(None)):
extra = ''
elif isinstance(location, str):
extra = ' at {0}'.format(filename)
extra = ' at {0}'.format(location)
elif isinstance(location, tuple):
filename, line_number = location
extra = ' at {0}:{1}'.format(*location)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment