aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/mix/tasks/pleroma/config.ex4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mix/tasks/pleroma/config.ex b/lib/mix/tasks/pleroma/config.ex
index 3e1449550..a781f3bf1 100644
--- a/lib/mix/tasks/pleroma/config.ex
+++ b/lib/mix/tasks/pleroma/config.ex
@@ -355,9 +355,9 @@ defmodule Mix.Tasks.Pleroma.Config do
end
end
- def maybe_atomize(arg) when is_atom(arg), do: arg
+ defp maybe_atomize(arg) when is_atom(arg), do: arg
- def maybe_atomize(arg) when is_binary(arg) do
+ defp maybe_atomize(arg) when is_binary(arg) do
chars = String.codepoints(arg)
if "." in chars do