From 7203db44a73b0813bc194c1018bf489e8073cd9d Mon Sep 17 00:00:00 2001 From: Jan Safranek Date: Mon, 25 Mar 2013 16:20:00 +0100 Subject: Check for qualifiers, properties without qualifiers crash here. Konkretmof seem to use qualifiers=None instead of qualifiers={}. --- tools/openlmi-doc-class2uml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/openlmi-doc-class2uml') diff --git a/tools/openlmi-doc-class2uml b/tools/openlmi-doc-class2uml index 840ecfd..8d524f5 100644 --- a/tools/openlmi-doc-class2uml +++ b/tools/openlmi-doc-class2uml @@ -96,7 +96,7 @@ class UmlExporter(object): c = self.classes.pop() cl = self.get_class(c) - if noassoc and cl.qualifiers.get("Association", False): + if noassoc and cl.qualifiers.get("Association"): continue if shrink and shrink.match(c): -- cgit