From b3fbb5e89654493892b7f97b403a79d278814655 2010-01-01 04:34:56 From: Fernando Perez Date: 2010-01-01 04:34:56 Subject: [PATCH] Fix auto-quoting via ',' as the first character, which had broken in refactor. --- diff --git a/IPython/core/prefilter.py b/IPython/core/prefilter.py index 2a8ca69..ddc32ee 100755 --- a/IPython/core/prefilter.py +++ b/IPython/core/prefilter.py @@ -158,7 +158,7 @@ class LineInfo(object): without worrying about *further* damaging state. """ if not self._oinfo: - self._oinfo = ip._ofind(self.ifun) + self._oinfo = ip.shell._ofind(self.ifun) return self._oinfo def __str__(self):