From 05564c23d58e2c595604b5f48450d8986b5ecb92 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Fri, 24 May 2013 21:06:48 +0200 Subject: [PATCH] Fix the error --- jedi/modules.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jedi/modules.py b/jedi/modules.py index 37e5bbac..46195c80 100644 --- a/jedi/modules.py +++ b/jedi/modules.py @@ -141,6 +141,7 @@ class ModuleWithCursor(Module): last_line = self.get_line(self._line_temp) if last_line and last_line[-1] == '\\': line = last_line[:-1] + ' ' + line + self._line_length = len(last_line) else: break return line[::-1]