From a4543a9ffcc52f205a8c2aaa56909acda4e9d0b1 Mon Sep 17 00:00:00 2001 From: Malfurious Date: Wed, 22 Feb 2023 15:01:22 -0500 Subject: symtbl: Rename file to match class name I assume that the preferred style is to leave one major class each to a file. In this case, synchronize the names of the Symtbl class and its containing module. Per PEP8, the module is lowercase, and the class remains Pascal case. If other memory-oriented utilities are introduced in the future, we may wish to move them, as well as Symtbl, back into a subpackage named 'mem'. Signed-off-by: Malfurious Signed-off-by: dusoleil --- sploit/payload.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sploit/payload.py') diff --git a/sploit/payload.py b/sploit/payload.py index c916514..1110e76 100644 --- a/sploit/payload.py +++ b/sploit/payload.py @@ -1,5 +1,5 @@ from sploit.arch import arch, itob -from sploit.mem import Symtbl +from sploit.symtbl import Symtbl class Payload: MAGIC = b'\xef' -- cgit v1.2.3