Skip to content

Commit

Permalink
Do not print app values that are empty lists.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavisp3 committed Jan 28, 2008
1 parent 8490349 commit b61c1d2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/faxien/src/fax_manage.erl
Original file line number Diff line number Diff line change
Expand Up @@ -482,6 +482,8 @@ highest_vsn(Error) ->
format_app_terms(Terms) ->
lists:concat([format_app_term(T) || T <- Terms]).

format_app_term({_Key, []}) ->
"";
format_app_term({Key, Val}) ->
lists:concat([Key, ":\n ", format_app_val(Key, Val), "\n"]).

Expand Down

0 comments on commit b61c1d2

Please sign in to comment.