aboutsummaryrefslogtreecommitdiffstats
path: root/qface/idl/domain.py
diff options
context:
space:
mode:
Diffstat (limited to 'qface/idl/domain.py')
-rw-r--r--qface/idl/domain.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/qface/idl/domain.py b/qface/idl/domain.py
index a2e3972..defdca3 100644
--- a/qface/idl/domain.py
+++ b/qface/idl/domain.py
@@ -79,7 +79,7 @@ class System(object):
return (module_name, type_name, fragment_name)
def toJson(self):
- o = {}
+ o = OrderedDict()
o['modules'] = [o.toJson() for o in self.modules]
return o
@@ -109,7 +109,7 @@ class NamedElement(object):
return '{0}.{1}'.format(self.module.name, self.name)
def toJson(self):
- o = {}
+ o = OrderedDict()
if self.name:
o['name'] = self.name
return o
@@ -197,7 +197,7 @@ class TypeSymbol(NamedElement):
return (self.is_primitive and self.name) \
or (self.is_complex and self.name) \
or (self.is_list and self.nested) \
- or (self.is_model and self.nested) \
+ or (self.is_model and self.nested)
@property
def is_bool(self):