From f2f18b567c26c0a1984fa83046fef48048fb92dc Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Tue, 13 Aug 2019 08:21:24 -0500 Subject: [PATCH] Fix last python 2 bit. --- pcapdiff.spec | 5 ++++- printpackets | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pcapdiff.spec b/pcapdiff.spec index c095119..ef33731 100644 --- a/pcapdiff.spec +++ b/pcapdiff.spec @@ -1,6 +1,6 @@ Name: pcapdiff Version: 0.1 -Release: 25%{?dist} +Release: 26%{?dist} Summary: Compares packet captures, detects forged, dropped or mangled packets License: GPLv2+ and GPLv3+ @@ -48,6 +48,9 @@ install -D -m 644 -p pcapdiff_helper.py $RPM_BUILD_ROOT%{_datadir}/pcapdiff/pcap #%{_datadir}/pcapdiff/*.pyo %changelog +* Tue Aug 13 2019 Gwyn Ciesla 0.1-26 +- Eliminate final python 2 dep. + * Tue Aug 06 2019 Gwyn Ciesla - 0.1-25 - Python 3. diff --git a/printpackets b/printpackets index 51e59e2..c67695b 100644 --- a/printpackets +++ b/printpackets @@ -1,4 +1,4 @@ -#!/usr/bin/python2 +#!/usr/bin/python3 if __name__ == '__main__': import sys sys.path.insert(0, '/usr/share/pcapdiff')