Fixup error message for issues with IPv4 resolving

This commit is contained in:
Niklas Keller
2016-03-26 10:08:24 +01:00
parent fc3b7e948f
commit 8d085347b9

View File

@@ -178,7 +178,7 @@ class Issue implements Command {
list($errors) = (yield \Amp\any($promises));
if (!empty($errors)) {
throw new AcmeException("Couldn't resolve the following domains to an IPv4 record: " . implode(array_keys($errors)));
throw new AcmeException("Couldn't resolve the following domains to an IPv4 record: " . implode(", ", array_keys($errors)));
}
}