V39 passed QC testing

This commit is contained in:
VerstreuteSeele
2023-01-17 05:36:09 +01:00
parent 4791468159
commit a095cc894f
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ class GitVersion:
self.gitlist = [("commit", "rev-parse --short HEAD"), ("branch", "rev-parse --abbrev-ref") , ("branch_num", "rev-list -count HEAD")]
def get_version_info(self):
commit = branch = branch_num = "XFW-0038"
commit = branch = branch_num = "XFW-0039"
# We dont use an `or` in commands that we expect to fail. It will serve no function.
# We also dont try;exept an entire block of code. This is bad practise. We only try the single part that we expect to fail!