summaryrefslogtreecommitdiff
path: root/build-aux/qmi-codegen/VariableSequence.py
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2014-05-27 20:04:07 +0200
committerAleksander Morgado <aleksander@aleksander.es>2014-05-28 12:39:56 +0200
commitee837bd68b0af2bf61be93c02a6e763a861d2d53 (patch)
tree6b8df8fb275ae48b0f0b7a575a0bb26b0a7ebc84 /build-aux/qmi-codegen/VariableSequence.py
parent804526f6788d5adc49d26b99379a04eb9ee69242 (diff)
nas: consolidate variable names
Diffstat (limited to 'build-aux/qmi-codegen/VariableSequence.py')
-rw-r--r--build-aux/qmi-codegen/VariableSequence.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/qmi-codegen/VariableSequence.py b/build-aux/qmi-codegen/VariableSequence.py
index a20c6b7..0ea5a9d 100644
--- a/build-aux/qmi-codegen/VariableSequence.py
+++ b/build-aux/qmi-codegen/VariableSequence.py
@@ -43,7 +43,7 @@ class VariableSequence(Variable):
for member_dictionary in dictionary['contents']:
member = {}
member['name'] = utils.build_underscore_name(member_dictionary['name'])
- member['object'] = VariableFactory.create_variable(member_dictionary, sequence_type_name + ' ' + member['name'], self.container_type)
+ member['object'] = VariableFactory.create_variable(member_dictionary, sequence_type_name + ' ' + member_dictionary['name'], self.container_type)
self.members.append(member)
# TODO: do we need this?