srounet / Pymem

A python library for windows, providing the needed functions to start working on your own with memory editing.
MIT License
305 stars 46 forks source link

Bad formatting for print exceptions #6

Closed srounet closed 7 years ago

srounet commented 7 years ago

Some of the print function does not include the format string right:

print("AdjustTokenPrivileges error: 0x%08x\n", ctypes.GetLastError())

vs

print("AdjustTokenPrivileges error: 0x%08x\n" % ctypes.GetLastError())