mirror of
https://git.rtems.org/rtems-source-builder
synced 2024-10-09 07:15:10 +08:00
Remove the deep copy and use a shallow copy so it worked on Python 2.6.
This commit is contained in:
@@ -308,8 +308,8 @@ class report:
|
||||
def buildset(self, name):
|
||||
self.bset_nesting += 1
|
||||
self.buildset_start(name)
|
||||
_opts = copy.deepcopy(self.opts)
|
||||
_defaults = copy.deepcopy(self.defaults)
|
||||
_opts = copy.copy(self.opts)
|
||||
_defaults = copy.copy(self.defaults)
|
||||
bset = setbuilder.buildset(name,
|
||||
_configs = self.configs,
|
||||
_defaults = _defaults,
|
||||
|
Reference in New Issue
Block a user