Skip to content

Commit

Permalink
Merge pull request #42 from mattboehm/use-range
Browse files Browse the repository at this point in the history
use range() instead of xrange() for py3 support
  • Loading branch information
dhellmann committed Feb 19, 2016
2 parents beaf97d + f93be89 commit ff3fd54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smiley/report/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def run(self):

# The trace output is paginated, so we have multiple pages to
# produce.
for i in xrange(1, last_page):
for i in range(1, last_page):
page_vals = pagination.get_pagination_values(
i, self.per_page, len(trace_data),
)
Expand Down

0 comments on commit ff3fd54

Please sign in to comment.