Skip to content

Commit

Permalink
fixes the breakage introduced by the recent merge
Browse files Browse the repository at this point in the history
  • Loading branch information
xeno-by committed May 27, 2013
1 parent 76aafe2 commit 2889951
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions dotensime.py
Expand Up @@ -4,6 +4,7 @@
from sexp import key, sym
from paths import *
from sbt import *
from strings import *

def locations(window):
"""Intelligently guess the appropriate .ensime file locations for the
Expand Down
3 changes: 2 additions & 1 deletion ensime.py
Expand Up @@ -14,6 +14,7 @@
from paths import *
from rpc import *
from sbt import *
from strings import *

class EnsimeCommon(object):
def __init__(self, owner):
Expand Down Expand Up @@ -74,7 +75,7 @@ def log_on_ui_thread(self, flavor, data):
exc_type, exc_value, exc_tb = sys.exc_info()
detailed_info = "".join(traceback.format_exception(exc_type, exc_value, exc_tb))
print detailed_info

def prepare_log_message(self, data):
buffer = "["+str(datetime.datetime.now())+"]: "
buffer += encode_if_unicode(data.strip())
Expand Down

0 comments on commit 2889951

Please sign in to comment.