Skip to content

Commit

Permalink
Merge pull request #56 from Scifabric/issue-55
Browse files Browse the repository at this point in the history
Fix wrong string. Closes #55.
  • Loading branch information
teleyinex authored Feb 26, 2018
2 parents 5107d1b + d004966 commit 186fa8a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def _update_project(config, task_presenter, results,
return ("Connection Error! The server %s is not responding" % config.server)
except ProjectNotFound:
return ("Project not found! The project: %s is missing." \
" Use the flag --arg=1 to search in all the server " \
" Use the flag --all=1 to search in all the server " \
% config.project['short_name'])
except TaskNotFound:
raise
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setup(
name="pybossa-pbs",
version="2.4.6",
version="2.4.7",
author="Scifabric LTD",
author_email="[email protected]",
description="PYBOSSA command line client",
Expand Down
2 changes: 1 addition & 1 deletion test/test_pbs_update_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,5 @@ def test_update_project_another_error(self, find_mock):
res = _update_project(self.config, task_presenter, results,
long_description, tutorial)
msg = ("Project not found! The project: short_name is missing." \
" Use the flag --arg=1 to search in all the server ")
" Use the flag --all=1 to search in all the server ")
assert res == msg, msg

0 comments on commit 186fa8a

Please sign in to comment.