Python PEP8: Do not use bare 'except'
Created by: cclauss
https://www.python.org/dev/peps/pep-0008 and https://realpython.com/the-most-diabolical-python-antipattern
$ flake8 . --count --select=E722,E9,F63,F7,F82 --show-source --statistics
./parl/remote/log_server.py:39:5: E722 do not use bare 'except'
except:
^
./parl/remote/log_server.py:72:5: E722 do not use bare 'except'
except:
^
./parl/remote/scripts.py:44:5: E722 do not use bare 'except'
except:
^
./parl/remote/scripts.py:71:5: E722 do not use bare 'except'
except:
^
./parl/remote/scripts.py:90:9: E722 do not use bare 'except'
except:
^
./parl/remote/tests/cluster_test.py:105:9: E722 do not use bare 'except'
except:
^
./parl/utils/machine_info.py:45:9: E722 do not use bare 'except'
except:
^
./parl/utils/machine_info.py:49:13: E722 do not use bare 'except'
except:
^
./parl/utils/machine_info.py:79:9: E722 do not use bare 'except'
except:
^
./parl/utils/machine_info.py:87:9: E722 do not use bare 'except'
except:
^
./parl/utils/summary.py:17:1: E722 do not use bare 'except'
except:
^
11 E722 do not use bare 'except'
11