Skip to content

Commit

Permalink
changed dso call pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
ZohebShaikh committed May 17, 2024
1 parent ea20d01 commit f53f2dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/pvxslibs/ioc.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

if __name__ == "__main__":
os.environ.setdefault("PVXS_QSRV_ENABLE", "YES")
pvxs_dbd_load = (("pvxsIoc.dbd", pvxslibs.path.dbd_path),)
pvxs_dso_load = ({"dso":"pvxslibs.lib.pvxsIoc"},)
ioc.main(extra_dbd_load=pvxs_dbd_load,extra_dso_load=pvxs_dso_load)
pvxs_dbd_load = (("pvxsIoc.dbd", pvxslibs.path.dbd_path), )
pvxs_dso_load = ("pvxslibs.lib.pvxsIoc", )
ioc.main(extra_dbd_load=pvxs_dbd_load, extra_dso_load=pvxs_dso_load)

0 comments on commit f53f2dc

Please sign in to comment.