Skip to content

Commit

Permalink
Fixes #9.
Browse files Browse the repository at this point in the history
  • Loading branch information
djkottmann committed Dec 9, 2013
1 parent 1c788d3 commit d6203dc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/drone-nexpose
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if __name__ == '__main__':
description = "%prog imports Nexpose files into Lair"

parser = OptionParser(usage=usage, description=description,
version="%prog 0.0.2")
version="%prog 0.0.3")
parser.add_option(
"--include-informational",
dest="include_informational",
Expand Down
4 changes: 2 additions & 2 deletions lairdrone/nexpose.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ def parse(project, nexpose_file, include_informational=False):
exploit.attrib['id']
)
note_dict['content'] = "{0}\n{1}".format(
exploit.attrib['title'],
exploit.attrib['link']
exploit.attrib['title'].encode('ascii', 'replace'),
exploit.attrib['link'].encode('ascii', 'replace')
)
note_dict['last_modified_by'] = TOOL
v['notes'].append(note_dict)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="lairdrone",
version="0.1.7",
version="0.1.8",
author='Dan Kottmann, Tom Steele',
author_email='[email protected], [email protected]',
packages=['lairdrone'],
Expand Down

0 comments on commit d6203dc

Please sign in to comment.