forked from pool/python-isc_dhcp_leases
- Update to version 0.10.0 * Fix timezone awareness for Python 2.7.x * Support working with historical dhcpd.leases files * Use timezone-aware datetime objects * Refactor keyword argument passing to BaseLease OBS-URL: https://build.opensuse.org/request/show/1108307 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-isc_dhcp_leases?expand=0&rev=7
14 lines
315 B
Diff
14 lines
315 B
Diff
diff --git a/isc_dhcp_leases/iscdhcpleases.py b/isc_dhcp_leases/iscdhcpleases.py
|
|
index e16677e..8578060 100644
|
|
--- a/isc_dhcp_leases/iscdhcpleases.py
|
|
+++ b/isc_dhcp_leases/iscdhcpleases.py
|
|
@@ -5,8 +5,6 @@ import re
|
|
import struct
|
|
import gzip
|
|
|
|
-from six import iteritems
|
|
-
|
|
|
|
try:
|
|
utc = datetime.timezone.utc
|