mirror of
https://notabug.org/scuti/lib3ddevil1
synced 2025-05-31 14:11:42 +05:30
Added return statement for fn in __init__
This commit is contained in:
@@ -8,5 +8,6 @@ def loadlibc():
|
|||||||
except OSError as e:
|
except OSError as e:
|
||||||
print("Error loading dynamically linked library.\nOSError: " + str(e))
|
print("Error loading dynamically linked library.\nOSError: " + str(e))
|
||||||
raise SystemExit("Couldn't load %s" % sharedlib)
|
raise SystemExit("Couldn't load %s" % sharedlib)
|
||||||
|
return libc
|
||||||
|
|
||||||
libc = loadlibc()
|
libc = loadlibc()
|
Reference in New Issue
Block a user