개정판 df4661c5
issue #503: apply vendor package to item
Change-Id: I75290df20793b0cab759dff140a62d7d5503be8f
DTI_PID/DTI_PID/XmlGenerator.py | ||
---|---|---|
420 | 420 |
|
421 | 421 |
if node: |
422 | 422 |
resultDic[key][0] += 1 |
423 |
if type(item) in node_dictionary: node_dictionary[type(item)].append(node) |
|
423 |
_type = type(item) |
|
424 |
if issubclass(type(item), SymbolSvgItem): _type = SymbolSvgItem |
|
425 |
if _type in node_dictionary: node_dictionary[_type].append(node) |
|
424 | 426 |
else: |
425 | 427 |
resultDic[key][1].append(str(item.uid)) |
426 | 428 |
|
내보내기 Unified diff