ignore all pydevd errors

Change-Id: I0d6cf53b8ba630c11f672e25195623f058114795
This commit is contained in:
Travis Tripp 2014-05-06 22:11:20 -06:00
parent 0d32a96f79
commit c73d52ca71
1 changed files with 2 additions and 2 deletions

View File

@ -39,8 +39,8 @@ def setup_app(config):
stdoutToServer=True,
stderrToServer=True,
suspend=False)
except Exception as e:
print "Debug Connection Error:", e
except BaseException as be:
print "Debug Connection Error (Ignoring): %s" % be
model.init_model()
app_conf = dict(config.app)