fix passing servername
This commit is contained in:
parent
cf90c1f2ed
commit
152fe36797
1 changed files with 2 additions and 1 deletions
|
@ -14,7 +14,8 @@ def edit(filepath: Path, rootpath: Path = None, env=os.environ, servername='tex
|
||||||
TERMINAL,
|
TERMINAL,
|
||||||
"-e",
|
"-e",
|
||||||
EDITOR,
|
EDITOR,
|
||||||
f"--servername {servername}",
|
f"--servername",
|
||||||
|
f"{servername}",
|
||||||
f"--remote-silent",
|
f"--remote-silent",
|
||||||
f"{str(filepath)}"
|
f"{str(filepath)}"
|
||||||
], env=env, cwd=str(rootpath))
|
], env=env, cwd=str(rootpath))
|
||||||
|
|
Loading…
Reference in a new issue