Left public during debugging

This commit is contained in:
Mark Felder 2020-11-29 12:59:03 -06:00
parent 3e6d9187a7
commit 53a5ec1952
1 changed files with 2 additions and 2 deletions

View File

@ -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