Added return statement for fn in __init__

This commit is contained in:
_ 2018-05-17 15:07:17 -07:00
parent 360de0dea5
commit 911a1ad840

View File

@ -8,5 +8,6 @@ def loadlibc():
except OSError as e:
print("Error loading dynamically linked library.\nOSError: " + str(e))
raise SystemExit("Couldn't load %s" % sharedlib)
return libc
libc = loadlibc()