diff options
author | Andrej Rode <mail@andrejro.de> | 2018-07-26 16:42:12 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2018-07-30 16:45:39 +0200 |
commit | 6be6c319db32eb285a217f41b2a7734c13c25452 (patch) | |
tree | fc7d3e90c3a6fd7af4ab5a6d533324da09a270da /grc/gui/VariableEditor.py | |
parent | 744f658316a20dbbb14d01092742c446c7b95522 (diff) |
grc: fix renaming of import -> imports in YAML syntax
Diffstat (limited to 'grc/gui/VariableEditor.py')
-rw-r--r-- | grc/gui/VariableEditor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/VariableEditor.py b/grc/gui/VariableEditor.py index c179c8bc84..ec4ad611ee 100644 --- a/grc/gui/VariableEditor.py +++ b/grc/gui/VariableEditor.py @@ -174,7 +174,7 @@ class VariableEditor(Gtk.VBox): # Block specific values if block: if block.key == 'import': - value = block.params['import'].get_value() + value = block.params['imports'].get_value() elif block.key != "variable": value = "<Open Properties>" sp('editable', False) |