From b24dc32f8245ed909f47f1e0ed89d227102cc739 Mon Sep 17 00:00:00 2001 From: Bernhard Mueller Date: Thu, 27 Jun 2019 11:23:04 +0200 Subject: [PATCH] Grammar fix --- myth | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/myth b/myth index 8418bef6..283f6bbb 100755 --- a/myth +++ b/myth @@ -11,7 +11,7 @@ import warnings def format_Warning(message, category, filename, lineno, line=""): - return "Deprecated Warning: {}\n\n".format(str(message)) + return "Deprecation warning: {}\n\n".format(str(message)) warnings.formatwarning = format_Warning