summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Plugins/Base.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Server/Plugins/Base.py')
-rw-r--r--src/lib/Server/Plugins/Base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Server/Plugins/Base.py b/src/lib/Server/Plugins/Base.py
index 5de57a87c..e8d798ae4 100644
--- a/src/lib/Server/Plugins/Base.py
+++ b/src/lib/Server/Plugins/Base.py
@@ -41,5 +41,5 @@ class Base(Bcfg2.Server.Plugin.Plugin,
fragments = reduce(lambda x, y: x + y,
[base.Match(metadata) for base
in list(self.entries.values())], [])
- [ret.append(copy.deepcopy(frag)) for frag in fragments]
+ [ret.append(copy.copy(frag)) for frag in fragments]
return [ret]