Skip to content

Commit 5ee5b54

Browse files
author
Humberto Sanchez II
committed
<Bug>[PyutSDInstance]: <Need to update Pyut Model>
[Call the method; otherwise puts it in the message, ugh] [#26]
1 parent 7438652 commit 5ee5b54

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="untanglepyut",
13-
version="0.4.1",
13+
version="0.4.2",
1414
author_email='[email protected]',
1515
description='XML to Ogl Object Model',
1616
long_description=README,

untanglepyut/UntangleSequenceDiagram.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,8 @@ def _untangleSDMessages(self, pyutDocument: Element) -> OglSDMessages:
9494
srcInstance: OglSDInstance = self._oglSDInstances[bogus.sourceId]
9595
dstInstance: OglSDInstance = self._oglSDInstances[bogus.destinationId]
9696

97-
pyutSDMessage.setSource(srcInstance.getPyutObject) # Ugh, time was set by sdMessageToPyutSDMessage
98-
pyutSDMessage.setDestination(dstInstance.getPyutObject) # This "split" functionality must be fixed
97+
pyutSDMessage.setSource(srcInstance.getPyutObject()) # Ugh, time was set by sdMessageToPyutSDMessage
98+
pyutSDMessage.setDestination(dstInstance.getPyutObject()) # This "split" functionality must be fixed
9999
oglSDMessage: OglSDMessage = OglSDMessage(srcShape=srcInstance, pyutSDMessage=pyutSDMessage, dstShape=dstInstance)
100100

101101
srcInstance.addLink(link=oglSDMessage)

0 commit comments

Comments
 (0)