Skip to content

Commit

Permalink
issue #38: fix facts string representation
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
  • Loading branch information
noxdafox committed Nov 4, 2020
1 parent 90d7181 commit 47a6b75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clips/facts.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def __eq__(self, fact):
def __str__(self):
string = fact_pp_string(self._env, self._fact)

return string.split(' ', 1)[-1]
return string.split(None, 1)[-1]

def __repr__(self):
return "%s: %s" % (
Expand Down

0 comments on commit 47a6b75

Please sign in to comment.