Skip to content

Commit

Permalink
Slightly more error reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
glott committed Apr 7, 2023
1 parent 4734576 commit 9b392a5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ARR_UPLOAD.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def delete_existing(ident):
wait()
except Exception:
print('Unable to read ' + read_config_value('ARR_CSV_FILE') \
+ ' from \'scenarios\' subdirectory.')
+ ' from \'scenarios\' subdirectory.\n')
pass

current_planes = driver.find_elements('xpath', '//input[@disabled=\'\']')
Expand Down
2 changes: 1 addition & 1 deletion DEP_UPLOAD.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def delete_existing(ident):
wait()
except Exception:
print('Unable to read ' + read_config_value('DEP_CSV_FILE') \
+ ' from \'scenarios\' subdirectory.')
+ ' from \'scenarios\' subdirectory.\n')
pass

current_planes = driver.find_elements('xpath', '//input[@disabled=\'\']')
Expand Down
2 changes: 1 addition & 1 deletion Jupyter/ARR_UPLOAD.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@
" wait()\n",
"except Exception:\n",
" print('Unable to read ' + read_config_value('ARR_CSV_FILE') \\\n",
" + ' from \\'scenarios\\' subdirectory.')\n",
" + ' from \\'scenarios\\' subdirectory.\\n')\n",
" pass\n",
"\n",
"current_planes = driver.find_elements('xpath', '//input[@disabled=\\'\\']')\n",
Expand Down
2 changes: 1 addition & 1 deletion Jupyter/DEP_UPLOAD.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@
" wait()\n",
"except Exception:\n",
" print('Unable to read ' + read_config_value('DEP_CSV_FILE') \\\n",
" + ' from \\'scenarios\\' subdirectory.')\n",
" + ' from \\'scenarios\\' subdirectory.\\n')\n",
" pass\n",
"\n",
"current_planes = driver.find_elements('xpath', '//input[@disabled=\\'\\']')\n",
Expand Down

0 comments on commit 9b392a5

Please sign in to comment.