We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1fe226 commit a2dbe22Copy full SHA for a2dbe22
src/itoolkit/transport/_direct.py
@@ -124,11 +124,12 @@ def __init__(self, library):
124
path = "{library}/XMLSTOREDP".format(library=library)
125
actgrp = _ILELOADX(path.encode(), ILELOAD_LIBOBJ)
126
if actgrp == 0xffffffffffffffff:
127
- raise OSError("{path} not found".format(path))
+ raise OSError("{path} not found".format(path=path))
128
129
self._RUNASCII = ILEPointer()
130
if _ILESYMX(self._RUNASCII, actgrp, b"RUNASCII") != ILESYM_PROCEDURE:
131
- raise OSError("RUNASCII procedure not found in {path}".format(path))
+ raise OSError("RUNASCII procedure not found in {path}"
132
+ .format(path=path))
133
134
def __call__(self, xmlin, ipc, ctl):
135
ipc = c_char_p(ipc.encode())
0 commit comments