Skip to content

Commit

Permalink
and close the bug that was introduced
Browse files Browse the repository at this point in the history
  • Loading branch information
trolldbois committed Sep 11, 2015
1 parent 2933d12 commit fcc10b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion haystack/memory_dumper.py
Expand Up @@ -169,7 +169,7 @@ def _dump_mapping(self, m, tmpdir):
with open(mmap_fname, 'wb') as mmap_fout:
mmap_fout.write(m.mmap().get_byte_buffer())
# dump all the metadata
self.index.write('%s\n', m)
self.index.write('%s\n' % m)
return

def _make_archive(self, srcdir, name):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -60,7 +60,7 @@ def run(self):


setup(name="haystack",
version="0.24",
version="0.26",
description="Search C Structures in a process' memory",
long_description=open("README.md").read(),
url="http://packages.python.org/haystack/",
Expand Down

0 comments on commit fcc10b5

Please sign in to comment.