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 b12297bab7

View File

@ -40,7 +40,9 @@ def setup_app(config):
stderrToServer=True,
suspend=False)
except Exception as e:
print "Debug Connection Error:", e
print "Debug Connection Error (Ignoring):", e
except:
print "Debug Connection Error (Ignoring)"
model.init_model()
app_conf = dict(config.app)