Skip to content

Commit

Permalink
Fix grammar (#808)
Browse files Browse the repository at this point in the history
* Fixed small grammatical error

* Fixed small grammatical error
  • Loading branch information
CapnCheapo authored and julien-duponchelle committed Dec 5, 2016
1 parent 9739118 commit d55c73b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gns3server/compute/base_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,10 +524,10 @@ def _start_ubridge(self):
"""

if self.ubridge_path is None:
raise NodeError("uBridge is not available or path doesn't exist. Or you just install GNS3 and need to restart your user session to refresh user permissions.")
raise NodeError("uBridge is not available, path doesn't exist, or you just installed GNS3 and need to restart your user session to refresh user permissions.")

if not self._manager.has_privileged_access(self.ubridge_path):
raise NodeError("uBridge requires root access or capability to interact with network adapters")
raise NodeError("uBridge requires root access or the capability to interact with network adapters")

server_config = self._manager.config.get_section_config("Server")
server_host = server_config.get("host")
Expand Down

0 comments on commit d55c73b

Please sign in to comment.