We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c712de0 commit 6ac7c48Copy full SHA for 6ac7c48
model/redhawk.py
@@ -35,7 +35,7 @@
35
from tornado import ioloop, log
36
37
import collections
38
-
+import copy
39
40
class Redhawk(object):
41
__domains = None
@@ -216,8 +216,9 @@ def _application_externalProps(app):
216
for prop in comp._properties:
217
log.app_log.debug('Checking {} == {}'.format(prop.id, pid))
218
if prop.id == pid:
219
- prop.id = epid;
220
- props.append(prop)
+ eprop = copy.copy(prop)
+ eprop.id = epid;
221
+ props.append(eprop)
222
log.app_log.debug('Found external property {} -> {}'.format(epid, pid))
223
break;
224
0 commit comments