Fix typo
This commit is contained in:
@ -887,7 +887,7 @@
|
||||
" // Register the callback with on_msg.\n",
|
||||
" comm.on_msg(function(msg) {\n",
|
||||
" //console.log('receiving', msg['content']['data'], msg);\n",
|
||||
" // Pass the mpl event to the overriden (by mpl) onmessage function.\n",
|
||||
" // Pass the mpl event to the overridden (by mpl) onmessage function.\n",
|
||||
" ws.onmessage(msg['content']['data'])\n",
|
||||
" });\n",
|
||||
" return ws;\n",
|
||||
|
||||
@ -1037,7 +1037,7 @@ def get_thermo_data(output):
|
||||
items = line.split()
|
||||
# Convert thermo output and store it.
|
||||
# It must have the same number of columns and
|
||||
# all of them must be convertable to floats.
|
||||
# all of them must be convertible to floats.
|
||||
# Otherwise we ignore the line
|
||||
if len(items) == len(columns):
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user