From 284b94e599e11b8cfb85dcf783780b24e4d7e08f 2017-01-04 16:59:03
From: Srinivas Reddy Thatiparthy <srinivasreddy@users.noreply.github.com>
Date: 2017-01-04 16:59:03
Subject: [PATCH] remove redundant function call
---

diff --git a/IPython/terminal/magics.py b/IPython/terminal/magics.py
index f17f567..4c773ef 100644
--- a/IPython/terminal/magics.py
+++ b/IPython/terminal/magics.py
@@ -26,7 +26,7 @@ def get_pasted_lines(sentinel, l_input=py3compat.input, quiet=False):
         prompt = ""
     while True:
         try:
-            l = str(l_input(prompt))
+            l = l_input(prompt)
             if l == sentinel:
                 return
             else: