File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ def init_check_latest_version(pkg_version="", main_package_name=""):
4848 has_update = lastversion .has_update (repo = main_package_name , at = 'pip' , current_version = pkg_version )
4949 if has_update :
5050 logger .info ('### Version Info ###' )
51- logger .warning ('Newer version is available : v. {}' .format (str (has_update )))
51+ logger .warning ('Newer version is available : v{}' .format (str (has_update )))
5252 logger .warning ('You can update it with command (\' pip install ' + main_package_name + ' --upgrade\' )' )
5353 except TypeError :
5454 logger .warning ('Cannot check the lastest version on PIP' )
@@ -66,7 +66,7 @@ def init_log_item(main_package_name="", path_to_analyze=""):
6666 if main_package_name != "" :
6767 pkg_version = pkg_resources .get_distribution (main_package_name ).version
6868 init_check_latest_version (pkg_version , main_package_name )
69- _result_log ["Tool Info" ] = main_package_name + " v. " + pkg_version
69+ _result_log ["Tool Info" ] = main_package_name + " v" + pkg_version
7070 if path_to_analyze != "" :
7171 _result_log ["Path to analyze" ] = path_to_analyze
7272
You can’t perform that action at this time.
0 commit comments