Skip to content

Commit

Permalink
fix a wrong error code
Browse files Browse the repository at this point in the history
  • Loading branch information
niosus committed Jun 13, 2017
1 parent 5474857 commit 5fc4f9a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion catkin_tools_fetch/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def fetch(packages,
package_folder = path.join(ws_path, package_path)
deps_to_fetch = Tools.update_deps_dict(
deps_to_fetch, parser.get_dependencies(package_folder))
if not deps_to_fetch:
if deps_to_fetch is None:
sys.exit(1)
already_fetched.add(package.name)
for new_dep_name in deps_to_fetch.keys():
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from setuptools import find_packages
from setuptools.command.install import install

version_str = '0.2.1'
version_str = '0.2.2'

# Setup installation dependencies
install_requires = [
Expand Down

0 comments on commit 5fc4f9a

Please sign in to comment.