We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb73367 commit aa2a9f9Copy full SHA for aa2a9f9
commitizen/commands/version.py
@@ -16,14 +16,14 @@ def __call__(self):
16
if version:
17
out.write(f"{version}")
18
else:
19
- out.error(f"No project information in this project.")
+ out.error("No project information in this project.")
20
elif self.parameter.get("verbose"):
21
out.write(f"Installed Commitizen Version: {__version__}")
22
version = self.config.settings["version"]
23
24
out.write(f"Project Version: {version}")
25
26
27
28
# if no argument is given, show installed commitizen version
29
out.write(f"{__version__}")
0 commit comments