Skip to content
This repository has been archived by the owner on Jun 18, 2020. It is now read-only.

Commit

Permalink
Merge pull request #351 from kiwifb/pexpect_upgrade
Browse files Browse the repository at this point in the history
This is a change needed to support pexpect 3 and  up
  • Loading branch information
novoselt committed Nov 27, 2015
2 parents 7d746b4 + ab1f775 commit 42c35ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sagenb/interfaces/expect.py
Expand Up @@ -277,7 +277,7 @@ def output_status(self):
if self._expect is None:
self._is_computing = False
else:
self._so_far += self._expect.before
self._so_far = self._expect.before

import re
v = re.findall('START%s.*%s'%(self._number,self._prompt), self._so_far, re.DOTALL)
Expand Down

0 comments on commit 42c35ff

Please sign in to comment.