diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2017-02-23 13:21:21 +0100 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2017-03-09 20:17:06 +0100 |
commit | 69776b6a60a8aa1bcd650e681326141b3c1ec866 (patch) | |
tree | fe094136ac6162504178318b1794ac2df8a151a4 /grc/core/Block.py | |
parent | 395bd4415cc92217886d0f2a4f026a6070e1748b (diff) |
grc: gtk minor fixes
Diffstat (limited to 'grc/core/Block.py')
-rw-r--r-- | grc/core/Block.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/grc/core/Block.py b/grc/core/Block.py index bca17d458a..f707175551 100644 --- a/grc/core/Block.py +++ b/grc/core/Block.py @@ -137,7 +137,10 @@ class Block(Element): for param_n in params_n: key = param_n['key'] if key in self.params: - raise Exception('Key "{}" already exists in params'.format(key)) + # raise Exception('Key "{}" already exists in params'.format(key)) + print('Key "{}" already exists in params in block {}' + ''.format(key, self.key)) + continue extended_param_n = base_params_n.get(param_n.pop('base_key', None), {}) extended_param_n.update(param_n) |