Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion smart/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,8 @@ def _upgrade(self, pkgs, changeset, locked, pending, depth=0):
for pkg in changeset.keys():

op = changeset.get(pkg)
if (op and op != origchangeset.get(pkg) and
origpkgop = origchangeset.get(pkg)
if (op and origpkgop != None and op != origpkgop and
pkg not in locked and pkg not in lockedstates):

try:
Expand Down