Move git commit message creation into class

This commit is contained in:
Stephan Kulow
2022-11-06 10:14:55 +01:00
parent 9114c2fff8
commit f1457e8f8e
2 changed files with 5 additions and 2 deletions

View File

@@ -51,6 +51,10 @@ class DBRevision:
return self.package < other.package
return self.rev < other.rev
def git_commit_message(self):
# TODO: Normalize better the commit message
return f"{self.comment}\n\n{self}"
def as_dict(self):
"""Return a dict we can put into YAML for test cases"""
ret = {