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

Commit

Permalink
This is a change needed to support pexpect 3 and up
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwifb committed Nov 5, 2015
1 parent 01f0dba commit ab1f775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sagenb/interfaces/expect.py
Original file line number Diff line number Diff line change
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 ab1f775

Please sign in to comment.