commit: 5135a8189f9e297354a1d9f61f3cb7454711923c
parent 6334ba9ad3d275e9e50b30319e2dbed3aac35fac
Author: Mark Felder <feld@FreeBSD.org>
Date: Sat, 28 Nov 2020 12:24:37 -0600
Use inspect instead of faking the output
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/mix/tasks/pleroma/config.ex b/lib/mix/tasks/pleroma/config.ex
@@ -148,7 +148,7 @@ defmodule Mix.Tasks.Pleroma.Config do
shell_error("No changes made.")
end
else
- shell_error("No settings in ConfigDB for :#{group}. Aborting.")
+ shell_error("No settings in ConfigDB for #{inspect(group)}. Aborting.")
end
else
_ -> configdb_not_enabled()
@@ -228,7 +228,7 @@ defmodule Mix.Tasks.Pleroma.Config do
shell_info("Settings for key #{key} migrated.")
end)
- shell_info("Settings for group :#{group} migrated.")
+ shell_info("Settings for group #{inspect(group)} migrated.")
end
defp migrate_from_db(opts) do