summaryrefslogtreecommitdiff
path: root/build-aux/mbim-codegen
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2013-04-13 15:41:56 +0200
committerAleksander Morgado <aleksander@lanedo.com>2013-04-21 19:28:16 +0200
commit8fb18787c084ed394ec4cd50fc59d00613ab2b8e (patch)
tree930e495022fbd104b60df6cf9832194d3761fe49 /build-aux/mbim-codegen
parent3ec4e001bf637f429f02c4ccb8dd314baff9a1a7 (diff)
downloadlibmbim-8fb18787c084ed394ec4cd50fc59d00613ab2b8e.tar.gz
mbim-codegen: fix generation of the notification parsers
Diffstat (limited to 'build-aux/mbim-codegen')
-rw-r--r--build-aux/mbim-codegen/Message.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/build-aux/mbim-codegen/Message.py b/build-aux/mbim-codegen/Message.py
index 324eb25..fe3f576 100644
--- a/build-aux/mbim-codegen/Message.py
+++ b/build-aux/mbim-codegen/Message.py
@@ -38,10 +38,10 @@ class Message:
self.name = dictionary['name']
# Gather types of command
- self.query = True if 'query' in dictionary else False
- self.set = True if 'set' in dictionary else False
- self.response = True if 'response' in dictionary else False
- self.notification = True if 'notify' in dictionary else False
+ self.query = True if 'query' in dictionary else False
+ self.set = True if 'set' in dictionary else False
+ self.response = True if 'response' in dictionary else False
+ self.notification = True if 'notification' in dictionary else False
# Build Fullname
self.fullname = 'MBIM Message ' + self.name