Commit de816e74 authored by Luke Macken's avatar Luke Macken

minor comment tweaks

parent 238cf1de
......@@ -18,7 +18,7 @@
pyrasite
========
Injects code into a running python process
Inject code into a running python process.
http://pyrasite.fedorahosted.org
......@@ -40,7 +40,7 @@ class CodeInjector(object):
def inject(self):
gdb_cmds = [
'PyGILState_Ensure()',
# Allow payloads to import modules along-side them
# Allow payloads to import modules alongside them
'PyRun_SimpleString("import sys; sys.path.insert(0, \\"%s\\");")' %
os.path.dirname(self.filename),
'PyRun_SimpleString("execfile(\\"%s\\")")' % self.filename,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment