Skip to content

Commit c322ce3

Browse files
committed
Unify version output format if msg is none
1 parent b574129 commit c322ce3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fosslight_util/help.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def print_help_msg(self, exitopt):
3535

3636
def print_package_version(pkg_name, msg="", exitopt=True):
3737
if msg == "":
38-
msg = f"{pkg_name} Version :"
38+
msg = f"{pkg_name} Version:"
3939
cur_version = pkg_resources.get_distribution(pkg_name).version
4040
print(f'{msg} {cur_version}')
4141

0 commit comments

Comments
 (0)