fix: Added the interoperability parameter to new_inner objects _STIXBase __deepcopy__ function

master
chrisr3d 2018-12-21 10:59:34 +01:00
parent f560049f96
commit 383bd56f0e
No known key found for this signature in database
GPG Key ID: 6BBED1B63A6D639F
1 changed files with 1 additions and 0 deletions

View File

@ -221,6 +221,7 @@ class _STIXBase(collections.Mapping):
# Assume: valid references in the original object are still valid in the new version
new_inner['_valid_refs'] = {'*': '*'}
new_inner['allow_custom'] = self.__allow_custom
new_inner['interoperability'] = self.__interoperability
return cls(**new_inner)
def properties_populated(self):