diff options
author | Brian Dolbec <dolsen@gentoo.org> | 2022-05-30 15:22:29 -0700 |
---|---|---|
committer | Brian Dolbec <dolsen@gentoo.org> | 2022-05-30 16:11:22 -0700 |
commit | b7defa1505c2e1207dc514523c21995f707943f4 (patch) | |
tree | 321db320fe6a25741f0dedba419d1f4450e6cb54 | |
parent | selectors.py: Fix bug 771963 incorrect comparison (diff) | |
download | mirrorselect-b7defa1505c2e1207dc514523c21995f707943f4.tar.gz mirrorselect-b7defa1505c2e1207dc514523c21995f707943f4.tar.bz2 mirrorselect-b7defa1505c2e1207dc514523c21995f707943f4.zip |
Remove obsolete __future__ import of print_function
Signed-off-by: Brian Dolbec <dolsen@gentoo.org>
-rw-r--r-- | mirrorselect/configs.py | 3 | ||||
-rwxr-xr-x | mirrorselect/main.py | 3 | ||||
-rw-r--r-- | mirrorselect/mirrorparser3.py | 2 |
3 files changed, 0 insertions, 8 deletions
diff --git a/mirrorselect/configs.py b/mirrorselect/configs.py index 4cba14f..2dd6cba 100644 --- a/mirrorselect/configs.py +++ b/mirrorselect/configs.py @@ -29,9 +29,6 @@ Distributed under the terms of the GNU General Public License v2 """ -from __future__ import print_function - - import os import re import shlex diff --git a/mirrorselect/main.py b/mirrorselect/main.py index c4f649f..c3b5633 100755 --- a/mirrorselect/main.py +++ b/mirrorselect/main.py @@ -30,9 +30,6 @@ Distributed under the terms of the GNU General Public License v2 """ -from __future__ import print_function - - import os import socket import sys diff --git a/mirrorselect/mirrorparser3.py b/mirrorselect/mirrorparser3.py index 16cb1c6..c9349cb 100644 --- a/mirrorselect/mirrorparser3.py +++ b/mirrorselect/mirrorparser3.py @@ -27,8 +27,6 @@ Distributed under the terms of the GNU General Public License v2 """ -from __future__ import print_function - from xml.etree import ElementTree as ET # old url's |