Skip to content

Commit 7fb07b5

Browse files
authored
Merge pull request #107 from ptcNOP/hotfix/nsrl_parse_merge_conflict
Resolve merge conflict
2 parents 4a2c756 + 57c04da commit 7fb07b5

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[bumpversion]
2-
current_version = 1.0.0
3-
commit = False
2+
current_version = 1.1.1
3+
commit = False
44
tag = False
55

66
[flake8]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def recursive_dir_list(path, exclude=['.pyc', '__pycache__']):
2929

3030
setup(
3131
name='multiscanner',
32-
version='1.0.0',
32+
version='1.1.1',
3333
url='https://github.com/MITRECND/multiscanner',
3434
license='MPL 2.0',
3535
author='Drew Bonasera',

utils/nsrl_parse.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,9 @@ def parse_nsrl(input_file, output_dir):
7474
offset.seek(offset_val * 12)
7575
offset.write(struct.pack('Q', output.tell()))
7676
last = offset_val
77-
<<<<<<< HEAD
78-
output.write(line[0].lower()+'\t')
79-
output.write(line[1].lower()+'\t')
80-
output.write(line[3]+'\n')
81-
=======
8277
output.write(line[0].lower() + '\t')
8378
output.write(line[1].lower() + '\t')
8479
output.write(line[3])
85-
>>>>>>> 89a346c3b3ec8a65b850dc492deb1ab07b339454
8680
count += 1
8781

8882

0 commit comments

Comments
 (0)