summaryrefslogtreecommitdiffstats
path: root/rtemsqual/content.py
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-06-10 07:46:50 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-07-03 10:22:45 +0200
commita51d6218608b515a0bebcbde591dd6673ee23069 (patch)
tree6be859a8ec1a1c00878f3864b60093e6fe9fe61b /rtemsqual/content.py
parentcontent: Add CContent.add_param_description() (diff)
downloadrtems-central-a51d6218608b515a0bebcbde591dd6673ee23069.tar.bz2
content: Fix CContent.close_for_loop()
Diffstat (limited to 'rtemsqual/content.py')
-rw-r--r--rtemsqual/content.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/rtemsqual/content.py b/rtemsqual/content.py
index 78b93847..27198069 100644
--- a/rtemsqual/content.py
+++ b/rtemsqual/content.py
@@ -615,6 +615,7 @@ class CContent(Content):
""" Closes a for loop. """
self.pop_indent()
self.append(["}"])
+ self.gap = True
@contextmanager
def for_loop(self, begin: str, end: str, step: str) -> Iterator[None]: