Skip to content

Commit

Permalink
Merge pull request #107 from ptcNOP/hotfix/nsrl_parse_merge_conflict
Browse files Browse the repository at this point in the history
Resolve merge conflict
  • Loading branch information
awest1339 authored Mar 15, 2018
2 parents 4a2c756 + 57c04da commit 7fb07b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[bumpversion]
current_version = 1.0.0
commit = False
current_version = 1.1.1
commit = False
tag = False

[flake8]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def recursive_dir_list(path, exclude=['.pyc', '__pycache__']):

setup(
name='multiscanner',
version='1.0.0',
version='1.1.1',
url='https://github.com/MITRECND/multiscanner',
license='MPL 2.0',
author='Drew Bonasera',
Expand Down
6 changes: 0 additions & 6 deletions utils/nsrl_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,9 @@ def parse_nsrl(input_file, output_dir):
offset.seek(offset_val * 12)
offset.write(struct.pack('Q', output.tell()))
last = offset_val
<<<<<<< HEAD
output.write(line[0].lower()+'\t')
output.write(line[1].lower()+'\t')
output.write(line[3]+'\n')
=======
output.write(line[0].lower() + '\t')
output.write(line[1].lower() + '\t')
output.write(line[3])
>>>>>>> 89a346c3b3ec8a65b850dc492deb1ab07b339454
count += 1


Expand Down

0 comments on commit 7fb07b5

Please sign in to comment.