diff --git a/functions.py b/functions.py index 7d2b23b7..bb37a7d9 100644 --- a/functions.py +++ b/functions.py @@ -105,7 +105,7 @@ class CompletionMatch(object): self.has_dot = has_dot def __str__(self): - dot = '.' if self.has_dot else '' + dot = '' if self.has_dot else '.' return dot + self.name.names[-1]