Skip to content

Commit

Permalink
Use clrf for end of line response from process
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Jan 15, 2017
1 parent 04dac90 commit 1ab4b84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metakernel/replwrap.py
Expand Up @@ -118,7 +118,7 @@ def _expect_prompt(self, timeout=None):
expects = [self.prompt_regex, self.continuation_prompt_regex,
self.stdin_prompt_regex]
if stream_handler:
expects += [u(self.child.linesep)]
expects += [u(self.child.crlf)]
if self.prompt_emit_cmd:
self.sendline(self.prompt_emit_cmd)
while True:
Expand Down

0 comments on commit 1ab4b84

Please sign in to comment.