Skip to content

Commit

Permalink
Fixed a tiny typo in the RuntimeException message.
Browse files Browse the repository at this point in the history
  • Loading branch information
yavor-atanasov authored and mluscon committed Aug 7, 2015
1 parent dfa325d commit 534c5cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/goal-py.c
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ list_generic(_GoalObject *self, HyPackageList (*func)(HyGoal))
PyErr_SetString(HyExc_Value, "Goal has not been run yet.");
break;
case HY_E_NO_SOLUTION:
PyErr_SetString(HyExc_Runtime, "Goal has not find a solution.");
PyErr_SetString(HyExc_Runtime, "Goal could not find a solution.");
break;
default:
assert(0);
Expand Down

0 comments on commit 534c5cf

Please sign in to comment.