Skip to content

Commit

Permalink
Version changes to/from "custom" are now both logged as "updates"
Browse files Browse the repository at this point in the history
  • Loading branch information
mcg1969 committed Mar 19, 2016
1 parent c3d54a1 commit 4891934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda/plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def display_actions(actions, index, show_channel_urls=None):
newer = (P0.name, P0.norm_version, P0.build_number) <= (P1.name, P1.norm_version, P1.build_number)
except TypeError:
newer = (P0.name, P0.version, P0.build_number) <= (P1.name, P1.version, P1.build_number)
if newer:
if newer or str(P1.version) == 'custom':
updated.add(pkg)
else:
downgraded.add(pkg)
Expand Down

0 comments on commit 4891934

Please sign in to comment.