summaryrefslogtreecommitdiffstats
path: root/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/main.py b/main.py
index bafa64df..9c62722f 100755
--- a/main.py
+++ b/main.py
@@ -566,9 +566,11 @@ repo: error:
566 sys.exit(1) 566 sys.exit(1)
567 567
568 if exp > ver: 568 if exp > ver:
569 logger.warn("\n... A new version of repo (%s) is available.", exp_str) 569 logger.warning(
570 "\n... A new version of repo (%s) is available.", exp_str
571 )
570 if os.access(repo_path, os.W_OK): 572 if os.access(repo_path, os.W_OK):
571 logger.warn( 573 logger.warning(
572 """\ 574 """\
573... You should upgrade soon: 575... You should upgrade soon:
574 cp %s %s 576 cp %s %s
@@ -577,7 +579,7 @@ repo: error:
577 repo_path, 579 repo_path,
578 ) 580 )
579 else: 581 else:
580 logger.warn( 582 logger.warning(
581 """\ 583 """\
582... New version is available at: %s 584... New version is available at: %s
583... The launcher is run from: %s 585... The launcher is run from: %s