diff --git a/check50/__main__.py b/check50/__main__.py index 0b321db1..20b2a125 100644 --- a/check50/__main__.py +++ b/check50/__main__.py @@ -326,7 +326,7 @@ def main(): setup_logging(args.verbose) # Warning in case of running remotely with no_download_checks or no_install_dependencies set - if args.local: + if not args.local: useless_args = [] if args.no_download_checks: useless_args.append("--no-downloads-checks") diff --git a/setup.py b/setup.py index eb0bba08..7444ff57 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,6 @@ "console_scripts": ["check50=check50.__main__:main"] }, url="https://github.com/cs50/check50", - version="3.1.0", + version="3.1.1", include_package_data=True )