Gentoo Archives: gentoo-commits

From: Zac Medico <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/util/
Date: Mon, 03 Aug 2020 21:42:19
Message-Id: 1596489954.79df13ade89cf8de236df8e59d3d0790a8a508cc.zmedico@gentoo
1 commit: 79df13ade89cf8de236df8e59d3d0790a8a508cc
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 3 20:20:32 2020 +0000
4 Commit: Zac Medico <zmedico <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 3 21:25:54 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=79df13ad
7
8 lib/portage/util/netlink.py: drop unused-import
9
10 * Drop unused-import
11 * Update copyright
12
13 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
14 Signed-off-by: Zac Medico <zmedico <AT> gentoo.org>
15
16 lib/portage/util/netlink.py | 3 +--
17 1 file changed, 1 insertion(+), 2 deletions(-)
18
19 diff --git a/lib/portage/util/netlink.py b/lib/portage/util/netlink.py
20 index 950ed8f69..ad9e8ca30 100644
21 --- a/lib/portage/util/netlink.py
22 +++ b/lib/portage/util/netlink.py
23 @@ -1,4 +1,4 @@
24 -# Copyright 2019 Gentoo Authors
25 +# Copyright 2019-2020 Gentoo Authors
26 # Distributed under the terms of the GNU General Public License v2
27
28 from io import BytesIO
29 @@ -8,7 +8,6 @@ from struct import Struct
30 import socket
31 from socket import (
32 AF_NETLINK, AF_UNSPEC,
33 - MSG_PEEK, MSG_TRUNC,
34 NETLINK_ROUTE,
35 SOCK_DGRAM,
36 inet_pton,