mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
remove quotes from injected viv spec
This commit is contained in:
parent
3bd5e1b25f
commit
eefcabec24
1 changed files with 2 additions and 2 deletions
|
@ -56,7 +56,7 @@ from typing import (
|
|||
from urllib.error import HTTPError
|
||||
from urllib.request import urlopen
|
||||
|
||||
__version__ = "23.8b1"
|
||||
__version__ = "23.8b1-dev"
|
||||
|
||||
|
||||
class Spinner:
|
||||
|
@ -143,7 +143,7 @@ class Env:
|
|||
|
||||
@property
|
||||
def _viv_spec(self) -> List[str]:
|
||||
return [i for i in os.getenv("VIV_SPEC", "").split(" ") if i]
|
||||
return [i[1:-1] for i in os.getenv("VIV_SPEC", "").split(" ") if i]
|
||||
|
||||
@property
|
||||
def _viv_log_path(self) -> Path:
|
||||
|
|
Loading…
Reference in a new issue