From 634cbd93a8fcc535992d12b594667e1e4f441aab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Fri, 30 Mar 2018 15:05:25 +0200 Subject: [PATCH] Remove not supported methods Methods have been remove in from IPython since 2016 https://github.com/ipython/ipython/commit/b7d03ed6b16013973b82c4725c79c30ac0a84903#diff-3ffc5a89fb88284fe9b5787b8859140b Fixes #9023 --- gajim/dev/ipython_view.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/gajim/dev/ipython_view.py b/gajim/dev/ipython_view.py index 644e1c35e..835a782f5 100644 --- a/gajim/dev/ipython_view.py +++ b/gajim/dev/ipython_view.py @@ -211,9 +211,6 @@ class IterableIPShell: self.IP.input_splitter.push(line) self.iter_more = self.IP.input_splitter.push_accepts_more() self.prompt = self.generatePrompt(self.iter_more) - if (self.IP.SyntaxTB.last_syntax_error and - self.IP.autoedit_syntax): - self.IP.edit_syntax_error() if not self.iter_more: if IPython.version_info[0] >= 2: source_raw = self.IP.input_splitter.raw_reset()