mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-08 23:04:48 +08:00
little bugfix
This commit is contained in:
@@ -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]
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user