From 2bd564ca225cbf1d02eb5025315bb67fe458ba00 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Wed, 31 May 2017 18:19:30 -0700 Subject: mpm: Replaced xrange with range for better Python future-proofing --- mpm/python/usrp_mpm/dboard_manager/eiscat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mpm/python/usrp_mpm/dboard_manager/eiscat.py') diff --git a/mpm/python/usrp_mpm/dboard_manager/eiscat.py b/mpm/python/usrp_mpm/dboard_manager/eiscat.py index 0b76c88ee..4a4d4a256 100644 --- a/mpm/python/usrp_mpm/dboard_manager/eiscat.py +++ b/mpm/python/usrp_mpm/dboard_manager/eiscat.py @@ -439,7 +439,7 @@ class EISCAT(DboardManagerBase): slot_idx, core_idx, self.log - ) for core_idx in xrange(2) + ) for core_idx in range(2) ] def _init_spi_devices(): " Returns abstraction layers to all the SPI devices " -- cgit v1.2.3