added future library to support python2/3, updated xrange calls to leverage builtins range

This commit is contained in:
bharnden 2019-05-05 16:19:12 -07:00
parent e79fd6c7ce
commit e58cbe9421
15 changed files with 50 additions and 36 deletions

View file

@ -4,6 +4,7 @@ virtual ethernet classes that implement the interfaces available under Linux.
import logging
import time
from builtins import range
from core import CoreCommandError, utils
from core import constants
@ -300,7 +301,7 @@ class TunTap(CoreInterface):
"""
delay = 0.01
result = False
for i in xrange(1, attempts + 1):
for i in range(1, attempts + 1):
r = func()
if r == 0:
result = True