Skip to content

Commit

Permalink
Fix reversed logic from c473512
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Zeleny authored and Zdenek Pavlas committed May 20, 2013
1 parent 0f0d069 commit 3170c8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ def _downloadonly_userconfirm(self):
self.verbose_logger.log(yum.logginglevels.INFO_2,
_('Running transaction check'))
msgs = self._run_rpm_check()
depsolve = True
depsolve = False
if msgs:
rpmlib_only = True
for msg in msgs:
Expand All @@ -644,7 +644,7 @@ def _downloadonly_userconfirm(self):
print _("ERROR You need to update rpm to handle:")
else:
print _('ERROR with transaction check vs depsolve:')
depsolve = False
depsolve = True

for msg in msgs:
print to_utf8(msg)
Expand Down

0 comments on commit 3170c8a

Please sign in to comment.