Commit 5204811f authored by Guillaume Seguin's avatar Guillaume Seguin

Merge branch 'fixconnectfail'

parents 13d968f4 b0160015
...@@ -1845,9 +1845,15 @@ Printrun. If not, see <http://www.gnu.org/licenses/>.""" ...@@ -1845,9 +1845,15 @@ Printrun. If not, see <http://www.gnu.org/licenses/>."""
logging.error(_("Error: You don't have permission to open %s.") % port) logging.error(_("Error: You don't have permission to open %s.") % port)
logging.error(_("You might need to add yourself to the dialout group.")) logging.error(_("You might need to add yourself to the dialout group."))
else: else:
traceback.print_exc() logging.error(traceback.format_exc())
# Kill the scope anyway # Kill the scope anyway
return return
except OSError as e:
if e.errno == 2:
logging.error(_("Error: You are trying to connect to a non-existing port."))
else:
logging.error(traceback.format_exc())
return
self.statuscheck = True self.statuscheck = True
if port != self.settings.port: if port != self.settings.port:
self.set("port", port) self.set("port", port)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment