From 270e9a5d7dfba53b97a7412c9d112a6bff06ab0c 2012-12-27 14:36:10 From: Pietro Berkes Date: 2012-12-27 14:36:10 Subject: [PATCH] BUG: Logging a rare error condition would have failed. --- diff --git a/IPython/inprocess/ipkernel.py b/IPython/inprocess/ipkernel.py index ad9097b..f6d4e97 100644 --- a/IPython/inprocess/ipkernel.py +++ b/IPython/inprocess/ipkernel.py @@ -95,7 +95,7 @@ class InProcessKernel(Kernel): frontend.stdin_channel.call_handlers(msg) break else: - log.error('No frontend found for raw_input request') + logging.error('No frontend found for raw_input request') return str() # Await a response.