Skip to content

Commit

Permalink
global: py 3 compat
Browse files Browse the repository at this point in the history
Signed-off-by: Mihai Bivol <mm.bivol@gmail.com>
  • Loading branch information
mihaibivol committed May 9, 2016
1 parent 00701c4 commit 47349c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion json_merger/graph_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def _build_stats(self):
if update_idx >= 0:
self.update_stats.move_to_result(update_idx)

for idx in xrange(len(self.head)):
for idx in range(len(self.head)):
root_idx, root = self._get_match('root', 'head', idx)
if root_idx >= 0:
self.head_stats.add_root_match(idx, root_idx)
Expand Down

0 comments on commit 47349c3

Please sign in to comment.