Skip to content

Commit e2b901d

Browse files
authored
Merge pull request #101 from nmmapper/master
Updated modification date
2 parents 3de136b + 9628000 commit e2b901d

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

nmap3/exceptions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
import re
2525

2626
__author__ = 'Wangolo Joel (inquiry@nmapper.com)'
27-
__version__ = '1.5.2'
28-
__last_modification__ = 'May/24/2022'
27+
__version__ = '1.6.0'
28+
__last_modification__ = 'Sep/15/2024'
2929

3030
class NmapNotInstalledError(Exception):
3131
"""Exception raised when nmap is not installed"""

nmap3/nmap3.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,15 @@
2828
import asyncio
2929
from xml.etree import ElementTree as ET
3030
from xml.etree.ElementTree import ParseError
31-
3231
from nmap3.nmapparser import NmapCommandParser
3332
from nmap3.utils import get_nmap_path, user_is_root
3433
from nmap3.exceptions import NmapNotInstalledError, NmapXMLParserError, NmapExecutionError
35-
3634
import xml
3735
import re
3836

3937
__author__ = 'Wangolo Joel (inquiry@nmapper.com)'
40-
__version__ = '1.5.5'
41-
__last_modification__ = 'Oct/11/2022'
38+
__version__ = '1.6.0'
39+
__last_modification__ = 'Sep/15/2024'
4240

4341
OS_TYPE = sys.platform
4442

nmap3/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
import functools
2828

2929
__author__ = 'Wangolo Joel (inquiry@nmapper.com)'
30-
__version__ = '1.5.2'
31-
__last_modification__ = 'May/24/2022'
30+
__version__ = '1.6.0'
31+
__last_modification__ = 'Sep/15/2024'
3232

3333
def get_nmap_path():
3434
"""

0 commit comments

Comments
 (0)