Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix drawing dfd with nested boundaries #107

Merged
merged 1 commit into from
Sep 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# 1.1.2

- Fix drawing DFDs for nested Boundaries [#107](https://github.com/izar/pytm/pull/107)

# 1.1.1

- Fix pydal dependencies install on pip
- Fix pydal dependencies install on pip [#106](https://github.com/izar/pytm/pull/106)

# 1.1.0

Expand Down
2 changes: 1 addition & 1 deletion pytm/pytm.py
Original file line number Diff line number Diff line change
Expand Up @@ -1289,7 +1289,7 @@ def _dfd_template(self):

def dfd(self):
if self._is_drawn:
return
return ""

self._is_drawn = True
logger.debug("Now drawing boundary " + self.name)
Expand Down