Skip to content

Commit 2f10386

Browse files
authored
fixing digits path
fixing digits path
1 parent a8f54cf commit 2f10386

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

nbdlstudioproxy/handlers.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,11 @@ class DLStudioProxyHandler(SuperviseAndProxyHandler):
1212
name = 'DLStudio'
1313

1414
def get_cmd(self):
15-
cmd = ['python -m digits',
16-
'-p', str(self.port)
15+
cmd = ['python',
16+
'-m',
17+
'digits',
18+
'-p',
19+
str(self.port)
1720
]
1821
return cmd
1922

0 commit comments

Comments
 (0)