aboutsummaryrefslogtreecommitdiff
path: root/app/tasks/minetestcheck/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/tasks/minetestcheck/__init__.py')
-rw-r--r--app/tasks/minetestcheck/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/tasks/minetestcheck/__init__.py b/app/tasks/minetestcheck/__init__.py
index dbc57ad..deec46e 100644
--- a/app/tasks/minetestcheck/__init__.py
+++ b/app/tasks/minetestcheck/__init__.py
@@ -24,14 +24,14 @@ class ContentType(Enum):
if self == ContentType.MOD:
if not other.isModLike():
- raise MinetestCheckError("expected a mod or modpack, found " + other.value)
+ raise MinetestCheckError("Expected a mod or modpack, found " + other.value)
elif self == ContentType.TXP:
if other != ContentType.UNKNOWN and other != ContentType.TXP:
raise MinetestCheckError("expected a " + self.value + ", found a " + other.value)
elif other != self:
- raise MinetestCheckError("expected a " + self.value + ", found a " + other.value)
+ raise MinetestCheckError("Expected a " + self.value + ", found a " + other.value)
from .tree import PackageTreeNode, get_base_dir