diff options
author | Stig-Ørjan Smelror <smelror@gmail.com> | 2022-04-07 06:32:32 +0200 |
---|---|---|
committer | Stig-Ørjan Smelror <smelror@gmail.com> | 2022-04-07 06:32:32 +0200 |
commit | 948a398f44b74b562cff0468a2233e0c7fa2acdd (patch) | |
tree | 0c755c2b58cec51d89319abd8898b643111e6c74 | |
parent | 4111017eaa9854a405917b043723633eefe6ddcb (diff) | |
download | mgarepo-948a398f44b74b562cff0468a2233e0c7fa2acdd.tar mgarepo-948a398f44b74b562cff0468a2233e0c7fa2acdd.tar.gz mgarepo-948a398f44b74b562cff0468a2233e0c7fa2acdd.tar.bz2 mgarepo-948a398f44b74b562cff0468a2233e0c7fa2acdd.tar.xz mgarepo-948a398f44b74b562cff0468a2233e0c7fa2acdd.zip |
maintdb.py: Fix error message
-rw-r--r-- | MgaRepo/commands/maintdb.py | 2 |
1 files changed, 1 insertions, 1 deletions
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") |