aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-11-04 16:45:18 +0200
committerLoïc Hoguin <[email protected]>2016-11-04 16:45:18 +0200
commitf701e5f7a7a7111743c5c30b1c5e30220761bb50 (patch)
tree7b196626d84fc9dbe7501a55b6b6b693686bd299
parenta637497112bfd23fcd22e1f4146edd1cc98ee5a6 (diff)
downloadasciideck-f701e5f7a7a7111743c5c30b1c5e30220761bb50.tar.gz
asciideck-f701e5f7a7a7111743c5c30b1c5e30220761bb50.tar.bz2
asciideck-f701e5f7a7a7111743c5c30b1c5e30220761bb50.zip
Remove an io:format
-rw-r--r--src/asciideck_parser.erl1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/asciideck_parser.erl b/src/asciideck_parser.erl
index a75e99f..93efc41 100644
--- a/src/asciideck_parser.erl
+++ b/src/asciideck_parser.erl
@@ -182,7 +182,6 @@ p1_li_glob([Line|Tail], Acc) ->
%% Skip initial empty lines and then glob like normal lists.
p1_ll_glob(Lines=[{_, Line}|Tail]) ->
-io:format("line ~s~n", [Line]),
case trim_ws(Line) of
<<>> -> p1_ll_glob(Tail);
_ -> p1_ll_glob(Lines, [])