Skip to content

Commit 26b884d

Browse files
committed
checkpoint
1 parent 35f113e commit 26b884d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

c_src/pythonx.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -453,13 +453,13 @@ for key, value in envs.items():
453453
try:
454454
os.environ[key] = value
455455
print((key, "env var set"))
456-
except Exception as e:
457-
print((key, "env var set failed", e))
456+
except:
457+
print((key, "env var set failed"))
458458
print(key)
459459
print(value)
460460
print("\n")
461-
raise e
462461
462+
print("ALL GOOD")
463463
464464
pythonx_handle_io_write = ctypes.CFUNCTYPE(
465465
None, ctypes.c_char_p, ctypes.c_char_p, ctypes.c_bool

0 commit comments

Comments
 (0)