From 948a398f44b74b562cff0468a2233e0c7fa2acdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stig-=C3=98rjan=20Smelror?= Date: Thu, 7 Apr 2022 06:32:32 +0200 Subject: maintdb.py: Fix error message --- MgaRepo/commands/maintdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MgaRepo/commands/maintdb.py b/MgaRepo/commands/maintdb.py index c926ec2..920ff37 100644 --- a/MgaRepo/commands/maintdb.py +++ b/MgaRepo/commands/maintdb.py @@ -44,7 +44,7 @@ def maintdb(maintdb_args): else: rep = e.reason except Exception as e: - rep = "Error trying to query the database : {}. Have you active Internet connection?".format(e.reason) + rep = "Error trying to query the database: {}. Do you have an active Internet connection?".format(e.reason) print(rep) else: maintdb_helper = get_helper("maintdb") -- cgit v1.2.1