1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-08 21:51:28 +00:00

Don't bother maintaining compat with Python 2.5. #1834

This commit is contained in:
dmiller
2019-12-30 06:57:04 +00:00
parent d75e255113
commit 2abcac9925

View File

@@ -128,12 +128,7 @@
import sys
try:
import hashlib
md5 = hashlib.md5
except ImportError:
import md5
md5 = md5.new
from hashlib import md5
sqlite = None
try: