##// END OF EJS Templates
zeroconf: compare singleton using is
timeless -
r28420:d03b7800 default
parent child Browse files
Show More
@@ -1145,7 +1145,7 b' class ServiceInfo(object):'
1145 value = 0
1145 value = 0
1146
1146
1147 # Only update non-existent properties
1147 # Only update non-existent properties
1148 if key and result.get(key) == None:
1148 if key and result.get(key) is None:
1149 result[key] = value
1149 result[key] = value
1150
1150
1151 self.properties = result
1151 self.properties = result
General Comments 0
You need to be logged in to leave comments. Login now