Skip to content

Commit

Permalink
Fix return condition in package_cache_data
Browse files Browse the repository at this point in the history
  • Loading branch information
Bezier89 authored Aug 2, 2019
1 parent c150add commit f00b1e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda/core/package_cache_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ def execute(self):

assert not context.dry_run

if not self.cache_actions or not self.extract_actions:
if not self.cache_actions and not self.extract_actions:
return

if not context.verbosity and not context.quiet and not context.json:
Expand Down

0 comments on commit f00b1e0

Please sign in to comment.