Skip to content

Commit

Permalink
hotfix for issue #8
Browse files Browse the repository at this point in the history
  • Loading branch information
ncc-erik-steringer committed Aug 31, 2018
1 parent c9e13e3 commit 9758787
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion principalmap/querying.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def perform_query(input_str, session, graph):
action = tokens[3]
if len(tokens) == 4:
result = test_for_node(session, graph, node, action)
if result is None:
if result is not None:
print_search_result(result, action)
else:
print('Did not find a way for ' + str(node) + ' to do ' + action)
Expand Down

0 comments on commit 9758787

Please sign in to comment.