also copy categories on OSMPoint

This commit is contained in:
Nicola Jordan 2018-02-13 10:32:15 +01:00 committed by GitHub
parent f8376661e9
commit d72ce2fd96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -86,6 +86,7 @@ class OSMPoint(SourcePoint):
c = OSMPoint(self.osm_type, self.osm_id, self.version, self.lat, self.lon, self.tags.copy())
c.action = self.action
c.remarks = self.remarks
c.categories = self.categories
return c
def is_area(self):