##// END OF EJS Templates
Fixed name conflict with _property_lock
Jonathan Frederic -
Show More
@@ -253,7 +253,7 b' class Widget(LoggingConfigurable):'
253 253 # Support methods
254 254 #-------------------------------------------------------------------------
255 255 @contextmanager
256 def _property_lock(self, key, value):
256 def _lock_property(self, key, value):
257 257 """Lock a property-value pair.
258 258
259 259 NOTE: This, in addition to the single lock for all state changes, is
@@ -299,7 +299,7 b' class Widget(LoggingConfigurable):'
299 299 for name in self.keys:
300 300 if name in sync_data:
301 301 value = self._unpack_widgets(sync_data[name])
302 with self._property_lock(name, value):
302 with self._lock_property(name, value):
303 303 setattr(self, name, value)
304 304
305 305 def _handle_custom_msg(self, content):
General Comments 0
You need to be logged in to leave comments. Login now