Skip to content

Commit

Permalink
grr...
Browse files Browse the repository at this point in the history
  • Loading branch information
ericvergnaud committed Dec 21, 2016
1 parent 3cd5e74 commit 4125fba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/Python2/src/antlr4/IntervalSet.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def removeOne(self, v):
# split existing range
elif v<i.stop-1:
x = Interval(i.start, v)
self.intervals[k] = range(v + 1, i.stop)
self.intervals[k] = Interval(v + 1, i.stop)
self.intervals.insert(k, x)
return
k += 1
Expand Down

0 comments on commit 4125fba

Please sign in to comment.