From f91fb8027ebc10163f155a5ec15d8ca2340eeb6e Mon Sep 17 00:00:00 2001 From: David Halter Date: Sat, 7 Apr 2012 21:16:36 +0200 Subject: [PATCH] little bugfix --- functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]