Skip to content
Snippets Groups Projects
Commit ff97851f authored by inso's avatar inso
Browse files

Fix bug #288

parent 6aec04f4
No related branches found
No related tags found
No related merge requests found
......@@ -74,6 +74,8 @@ class StepPageInit(Step):
self.config_dialog.label_error.setText(str(e))
except aiohttp.errors.ClientError as e:
self.config_dialog.label_error.setText(str(e))
except ValueError as e:
self.config_dialog.label_error.setText(str(e))
@asyncify
@asyncio.coroutine
......@@ -101,6 +103,8 @@ Yours : {0}, the network : {1}""".format(registered[1], registered[2])))
self.config_dialog.label_error.setText(str(e))
except aiohttp.errors.ClientError as e:
self.config_dialog.label_error.setText(str(e))
except ValueError as e:
self.config_dialog.label_error.setText(str(e))
@asyncify
@asyncio.coroutine
......@@ -143,6 +147,8 @@ Yours : {0}, the network : {1}""".format(registered[1], registered[2])))
self.config_dialog.label_error.setText(str(e))
except aiohttp.errors.ClientError as e:
self.config_dialog.label_error.setText(str(e))
except ValueError as e:
self.config_dialog.label_error.setText(str(e))
def is_valid(self):
return self.node is not None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment