summaryrefslogtreecommitdiff
path: root/rtemsspec
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2023-11-21 11:13:15 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2023-11-21 11:15:24 +0100
commit960921f749b8011e9c8bd696612f5d63a3450964 (patch)
treea0545ed23ebdb71ded383af202ce809d4f547af2 /rtemsspec
parent55f00c88619dc25dd6d37c0428cded856704f841 (diff)
content: Make BSD_2_CLAUSE_LICENSE public
Diffstat (limited to 'rtemsspec')
-rw-r--r--rtemsspec/content.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/rtemsspec/content.py b/rtemsspec/content.py
index c91e6ccf..301baecb 100644
--- a/rtemsspec/content.py
+++ b/rtemsspec/content.py
@@ -511,7 +511,7 @@ class Content:
out.write(str(self))
-_BSD_2_CLAUSE_LICENSE = """Redistribution and use in source and binary \
+BSD_2_CLAUSE_LICENSE = """Redistribution and use in source and binary \
forms, with or without
modification, are permitted provided that the following conditions
are met:
@@ -647,7 +647,7 @@ class CContent(Content):
"""
with self.comment_block():
self.add(self._copyrights.get_statements())
- self.add(_BSD_2_CLAUSE_LICENSE)
+ self.add(BSD_2_CLAUSE_LICENSE)
def prepend_copyrights_and_licenses(self):
"""
@@ -657,7 +657,7 @@ class CContent(Content):
content = CContent()
with content.comment_block():
content.add(self._copyrights.get_statements())
- content.add(_BSD_2_CLAUSE_LICENSE)
+ content.add(BSD_2_CLAUSE_LICENSE)
content.append("")
self.prepend(content)