Skip to content

Commit

Permalink
format error
Browse files Browse the repository at this point in the history
  • Loading branch information
beadsland committed May 1, 2012
1 parent 76ca12d commit 9e6cd5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/edown_doclet.erl
Expand Up @@ -229,7 +229,8 @@ get_git_branch() ->
case string:tokens(Git, " \n") of
[$*,Branch] -> Branch;
[$*,"(no","branch)",Branch] -> Branch;
_Other -> erlang:error({cannot_get_git_branch, lists:flatten(Git)})
_Other -> What = io_lib:format("~s~n", Git),
erlang:error({cannot_get_git_branch, What})
end.

%% Tried to display logo in a table on top of page, but not working.
Expand Down

0 comments on commit 9e6cd5f

Please sign in to comment.