kopia lustrzana https://github.com/projecthorus/chasemapper
Fix bearings for Python 3
rodzic
aa827ebb8b
commit
21a411b54e
|
@ -223,7 +223,7 @@ class Bearings(object):
|
|||
_removal_list = []
|
||||
|
||||
# Grab the list of bearing entries, and sort them by time
|
||||
_bearing_list = self.bearings.keys()
|
||||
_bearing_list = list(self.bearings.keys())
|
||||
_bearing_list.sort()
|
||||
|
||||
# First remove any excess entries - we only get one bearing at a time, so we can do this simply:
|
||||
|
|
Ładowanie…
Reference in New Issue