Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2021-04-18 20:34:41 +0300
committerGitHub <noreply@github.com>2021-04-18 20:34:41 +0300
commit22383865bf4f16345774722dbcca9a8ef85a9bf0 (patch)
tree1f21729f545c479b24601bf11ead5b33ef944f7e
parentbaeddddec4c301389a088a9f7059a4b5d28c7dd1 (diff)
MAINT: Fixed typo in generateChangelog.py
In that script the commit type was referenced as "CHANGED" but the correct type is "CHANGE".
-rwxr-xr-xscripts/generateChangelog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/generateChangelog.py b/scripts/generateChangelog.py
index e11b4f637..b26c971d9 100755
--- a/scripts/generateChangelog.py
+++ b/scripts/generateChangelog.py
@@ -92,7 +92,7 @@ def main():
prefix = "Added: "
elif "FIX" in commit.m_types:
prefix = "Fixed: "
- elif "CHANGED" in commit.m_types:
+ elif "CHANGE" in commit.m_types:
prefix = "Changed: "
else:
prefix = "Unknown: "