diff options
author | Mike Frysinger <vapier@google.com> | 2023-10-19 05:12:13 -0400 |
---|---|---|
committer | LUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com> | 2023-10-20 05:19:40 +0000 |
commit | c0aad7de18d281b98b7f13eb7928b206a5bd48b4 (patch) | |
tree | 84cc45f1aacd382e624a8003fe9db51cce2b14e8 | |
parent | d4aee6570b64c5b6de584b0a5ce76e6a139faf38 (diff) | |
download | git-repo-c0aad7de18d281b98b7f13eb7928b206a5bd48b4.tar.gz |
repo: drop Python 2 compat logic
Bug: 302871152
Change-Id: Ie7a0219e7ac582cd25c2bc5fb530e2c03bcbcc6e
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/390034
Reviewed-by: Aravind Vasudevan <aravindvasudev@google.com>
Commit-Queue: Mike Frysinger <vapier@google.com>
Tested-by: Mike Frysinger <vapier@google.com>
-rwxr-xr-x | repo | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -1,5 +1,4 @@ | |||
1 | #!/usr/bin/env python | 1 | #!/usr/bin/env python |
2 | # -*- coding:utf-8 -*- | ||
3 | # | 2 | # |
4 | # Copyright (C) 2008 The Android Open Source Project | 3 | # Copyright (C) 2008 The Android Open Source Project |
5 | # | 4 | # |
@@ -22,8 +21,6 @@ It is used to get an initial repo client checkout, and after that it runs the | |||
22 | copy of repo in the checkout. | 21 | copy of repo in the checkout. |
23 | """ | 22 | """ |
24 | 23 | ||
25 | from __future__ import print_function | ||
26 | |||
27 | import datetime | 24 | import datetime |
28 | import os | 25 | import os |
29 | import platform | 26 | import platform |
@@ -173,7 +170,7 @@ if not REPO_REV: | |||
173 | BUG_URL = "https://issues.gerritcodereview.com/issues/new?component=1370071" | 170 | BUG_URL = "https://issues.gerritcodereview.com/issues/new?component=1370071" |
174 | 171 | ||
175 | # increment this whenever we make important changes to this script | 172 | # increment this whenever we make important changes to this script |
176 | VERSION = (2, 37) | 173 | VERSION = (2, 39) |
177 | 174 | ||
178 | # increment this if the MAINTAINER_KEYS block is modified | 175 | # increment this if the MAINTAINER_KEYS block is modified |
179 | KEYRING_VERSION = (2, 3) | 176 | KEYRING_VERSION = (2, 3) |