Use projects_path & images_path.

This commit is contained in:
Jeremy
2015-02-23 17:08:34 -07:00
parent fb9f5d3c14
commit 182d2e465e
3 changed files with 8 additions and 5 deletions

View File

@ -142,9 +142,11 @@ class Server:
@asyncio.coroutine
def start_shell(self):
from ptpython.repl import embed
from gns3server.modules import Qemu
try:
from ptpython.repl import embed
except ImportError:
log.error("Unable to start a shell: the ptpython module must be installed!")
return
yield from embed(globals(), locals(), return_asyncio_coroutine=True, patch_stdout=True)
def run(self):