We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e83a29f commit 9a07494Copy full SHA for 9a07494
doc/make.py
@@ -105,7 +105,7 @@ def auto_dev_build(debug=False):
105
html()
106
step = 'upload dev'
107
upload_dev()
108
- if not debug():
+ if not debug:
109
sendmail(step)
110
111
step = 'latex'
@@ -115,8 +115,8 @@ def auto_dev_build(debug=False):
115
if not debug:
116
117
except (Exception, SystemExit), inst:
118
- msg += str(inst) + '\n'
119
- sendmail(step, msg)
+ msg = str(inst) + '\n'
+ sendmail(step, '[ERROR] ' + msg)
120
121
def sendmail(step=None, err_msg=None):
122
from_name, to_name = _get_config()
0 commit comments