mozrepl
mozrepl copied to clipboard
quit does not quit
See http://github.com/bard/mozrepl/blob/master/chrome/content/server.js
Line 85:
function(session) { session.quit; });
should be
function(session) { session.quit(); });