mirror of
https://github.com/koush/scrypted.git
synced 2026-05-04 21:30:30 +01:00
server: rename to plugin_remote.py
This commit is contained in:
@@ -1,9 +0,0 @@
|
||||
from asyncore import write
|
||||
import code
|
||||
|
||||
class ScryptedConsole(code.InteractiveConsole):
|
||||
def write(self, data: str) -> None:
|
||||
return super().write(data)
|
||||
|
||||
def raw_input(self, prompt: str) -> str:
|
||||
return super().raw_input(prompt=prompt)
|
||||
@@ -28,7 +28,7 @@ export class PythonRuntimeWorker extends ChildProcessWorker {
|
||||
)
|
||||
}
|
||||
args.push(
|
||||
path.join(__dirname, '../../../python', 'plugin-remote.py'),
|
||||
path.join(__dirname, '../../../python', 'plugin_remote.py'),
|
||||
)
|
||||
|
||||
const gstEnv: NodeJS.ProcessEnv = {};
|
||||
|
||||
Reference in New Issue
Block a user