python: Stop using xrange().
[cascardo/ovs.git] / python / ovs / json.py
index 4e87726..07fd9c1 100644 (file)
@@ -16,6 +16,8 @@ import re
 import StringIO
 import sys
 
+from six.moves import range
+
 __pychecker__ = 'no-stringiter'
 
 escapes = {ord('"'): u"\\\"",