Fix the arguments to the locking map. All maps are locked out.

This commit is contained in:
Chris Johns 2013-04-28 15:30:39 +10:00
parent b3b8dd31d0
commit bd26be04c7

View File

@ -429,10 +429,10 @@ class macros:
return True
return False
def lock_read_map(self, _map):
def lock_read_map(self):
self.read_map_locked = True
def unlock_read_map(self, _map):
def unlock_read_map(self):
self.read_map_locked = False
if __name__ == "__main__":