From 681cf08a77eabae288bd1aa0d7981fc55be91811 Mon Sep 17 00:00:00 2001 From: lilydjwg Date: Mon, 15 Oct 2012 17:18:16 +0800 Subject: [PATCH] small fix --- bin/mchconsole | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/mchconsole b/bin/mchconsole index 84f5cae..bef8c0f 100755 --- a/bin/mchconsole +++ b/bin/mchconsole @@ -82,8 +82,6 @@ class RemoteLuaCompleter(object): obj, suffix = re.split(r'[.:]', text, 1) self.matches = self.attr_matches(obj, suffix, text[len(obj)] == ':') except ValueError: - import traceback - traceback.print_exc() self.matches = self.global_matches(text) try: return self.matches[state]