8000 Fix return condition in package_cache_data by Bezier89 · Pull Request #9039 · conda/conda · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fix return condition in package_cache_data #9039

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 2, 2019
Merged
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
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