blob: 7a5aa777739ad4a6ea72c6734ff9535fc9d8b7a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
--- a/examples/copr/copr_cli/main.py
+++ b/examples/copr/copr_cli/main.py
@@ -8,15 +8,11 @@ import argparse
import sys
import datetime
import time
-import six
import simplejson
from collections import defaultdict
import logging
-if six.PY2:
- from urlparse import urlparse
-else:
- from urllib.parse import urlparse
+from urllib.parse import urlparse
if sys.version_info < (2, 7):
class NullHandler(logging.Handler):
|