repopick: Remove python2 support
Change-Id: I8f164eea3a17888bcf30ff649ddcf81a00bab582
This commit is contained in:
parent
abe8aa5563
commit
94b1026f1a
1 changed files with 4 additions and 16 deletions
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
#
|
#
|
||||||
# Copyright (C) 2013-15 The CyanogenMod Project
|
# Copyright (C) 2013-2015 The CyanogenMod Project
|
||||||
# (C) 2017 The LineageOS Project
|
# (C) 2017-2024 The LineageOS Project
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
|
@ -20,8 +20,6 @@
|
||||||
# Run repopick.py -h for a description of this utility.
|
# Run repopick.py -h for a description of this utility.
|
||||||
#
|
#
|
||||||
|
|
||||||
from __future__ import print_function
|
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
@ -35,17 +33,7 @@ from xml.etree import ElementTree
|
||||||
try:
|
try:
|
||||||
import requests
|
import requests
|
||||||
except ImportError:
|
except ImportError:
|
||||||
try:
|
|
||||||
# For python3
|
|
||||||
import urllib.error
|
|
||||||
import urllib.request
|
import urllib.request
|
||||||
except ImportError:
|
|
||||||
# For python2
|
|
||||||
import imp
|
|
||||||
import urllib2
|
|
||||||
urllib = imp.new_module('urllib')
|
|
||||||
urllib.error = urllib2
|
|
||||||
urllib.request = urllib2
|
|
||||||
|
|
||||||
|
|
||||||
# cmp() is not available in Python 3, define it manually
|
# cmp() is not available in Python 3, define it manually
|
||||||
|
@ -423,7 +411,7 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
# Print out some useful info
|
# Print out some useful info
|
||||||
if not args.quiet:
|
if not args.quiet:
|
||||||
print(u'--> Subject: "{0}"'.format(item['subject']))
|
print('--> Subject: "{0}"'.format(item['subject']))
|
||||||
print('--> Project path: {0}'.format(project_path))
|
print('--> Project path: {0}'.format(project_path))
|
||||||
print('--> Change number: {0} (Patch Set {1})'.format(item['id'], item['patchset']))
|
print('--> Change number: {0} (Patch Set {1})'.format(item['id'], item['patchset']))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue