forked from AkkomaGang/akkoma
Use inspect instead of faking the output
This commit is contained in:
parent
6334ba9ad3
commit
5135a8189f
1 changed files with 2 additions and 2 deletions
|
@ -148,7 +148,7 @@ def run(["delete", group]) 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 @@ defp create(group, settings) 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
|
||||
|
|
Loading…
Reference in a new issue