Fix generate-appups regression (atom vs list)

This commit is contained in:
joewilliams 2011-02-16 07:48:51 -08:00 committed by Tuncer Ayaz
parent 11bf6b4aab
commit c6da0b3ef6

View file

@ -108,7 +108,7 @@ file_to_name(File) ->
filename:rootname(filename:basename(File)).
genappup_which_apps(UpgradedApps, [First|Rest]) ->
List = proplists:delete(First, UpgradedApps),
List = proplists:delete(list_to_atom(First), UpgradedApps),
genappup_which_apps(List, Rest);
genappup_which_apps(Apps, []) ->
Apps.