parent
e18bf4178f
commit
04af7ef182
1 changed files with 2 additions and 1 deletions
|
@ -11,6 +11,7 @@ from rwx import fs
|
|||
from rwx.log import stream as log
|
||||
|
||||
import pidd
|
||||
from pidd import cmd
|
||||
from pidd.project import Project
|
||||
from pidd.projects import Projects
|
||||
|
||||
|
@ -60,7 +61,7 @@ def main(main: str) -> None:
|
|||
pidd.set_ssh(*arguments)
|
||||
pidd.install_commands(main)
|
||||
else:
|
||||
function = getattr(pidd, name.replace("-", "_"))
|
||||
function = getattr(cmd, name.replace("-", "_"))
|
||||
function(*arguments)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue