From 14183fa9c3fc114b443eb8df8630521cd110a747 2014-10-17 13:17:08 From: Matthias Bussonnier Date: 2014-10-17 13:17:08 Subject: [PATCH] remove debug --- diff --git a/IPython/html/static/notebook/js/quickhelp.js b/IPython/html/static/notebook/js/quickhelp.js index fe51f32..7792480 100644 --- a/IPython/html/static/notebook/js/quickhelp.js +++ b/IPython/html/static/notebook/js/quickhelp.js @@ -153,12 +153,7 @@ define([ var build_one = function (s) { var help = s.help; - var shortcut = ''; - if(s.shortcut){ - shortcut = prettify(s.shortcut); - } else { - console.error('[debug] - nothing for', s) - } + var shortcut = prettify(s.shortcut); return $('
').addClass('quickhelp'). append($('').addClass('shortcut_key').append($(shortcut))). append($('').addClass('shortcut_descr').text(' : ' + help));