Skip to content

Commit

Permalink
fixing digits path
Browse files Browse the repository at this point in the history
fixing digits path
  • Loading branch information
kmader authored May 6, 2018
1 parent a8f54cf commit 2f10386
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions nbdlstudioproxy/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ class DLStudioProxyHandler(SuperviseAndProxyHandler):
name = 'DLStudio'

def get_cmd(self):
cmd = ['python -m digits',
'-p', str(self.port)
cmd = ['python',
'-m',
'digits',
'-p',
str(self.port)
]
return cmd

Expand Down

0 comments on commit 2f10386

Please sign in to comment.