diff options
Diffstat (limited to 'pyfirstaidkit/plugins.py')
-rw-r--r-- | pyfirstaidkit/plugins.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyfirstaidkit/plugins.py b/pyfirstaidkit/plugins.py index bf55df7..303cfc9 100644 --- a/pyfirstaidkit/plugins.py +++ b/pyfirstaidkit/plugins.py @@ -41,7 +41,7 @@ class Flow(dict): @staticmethod def init(parent): - flows = copy(parent.flows) + flows = deepcopy(parent.flows) return flows class Plugin(object): @@ -568,7 +568,7 @@ class PluginSystem(object): #get best title gt = trans.lgettext(flowname) if trans else flowname title = gt if gt != flowname else flow.title - + self._flow_titles[flowname] = title #set title for flow with no title |