summaryrefslogtreecommitdiff
path: root/hypodermic/main.py
diff options
context:
space:
mode:
authorJakob <jakob@memeware.net>2017-09-01 16:40:01 -0400
committerJakob <jakob@memeware.net>2017-09-01 16:40:01 -0400
commit8b232076240dc7e6f8abdfca3d1634ae065c691b (patch)
treea41f21c0d10eca31331801d5e1687e5c52224394 /hypodermic/main.py
parent2a715b27d8a39eb1aa01bb771f97bba8dacde5af (diff)
Process.rtld now returns the base region of the RTLD.
Diffstat (limited to 'hypodermic/main.py')
-rw-r--r--hypodermic/main.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/hypodermic/main.py b/hypodermic/main.py
index 635e3a7..74c4486 100644
--- a/hypodermic/main.py
+++ b/hypodermic/main.py
@@ -21,7 +21,7 @@ import argparse
import sys
import textwrap
-from hypodermic.ptrace import Process
+from hypodermic.process import Process
class CustomHelp(argparse.HelpFormatter):
@@ -106,8 +106,8 @@ def main():
sys.exit(1)
if args.create:
- alert("Creating process at path {}".format(args.create))
+ alert("Creating process at path '{}'...".format(args.create))
p = Process(path=args.create)
else:
- alert("Attaching to process with pid {}".format(args.attach))
+ alert("Attaching to process with pid {}...".format(args.attach))
p = Process(pid=args.attach)