summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2023-10-19 05:12:13 -0400
committerLUCI <gerrit-scoped@luci-project-accounts.iam.gserviceaccount.com>2023-10-20 05:19:40 +0000
commitc0aad7de18d281b98b7f13eb7928b206a5bd48b4 (patch)
tree84cc45f1aacd382e624a8003fe9db51cce2b14e8
parentd4aee6570b64c5b6de584b0a5ce76e6a139faf38 (diff)
downloadgit-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-xrepo5
1 files changed, 1 insertions, 4 deletions
diff --git a/repo b/repo
index 95f9df88..36a2e0ea 100755
--- a/repo
+++ b/repo
@@ -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
22copy of repo in the checkout. 21copy of repo in the checkout.
23""" 22"""
24 23
25from __future__ import print_function
26
27import datetime 24import datetime
28import os 25import os
29import platform 26import platform
@@ -173,7 +170,7 @@ if not REPO_REV:
173BUG_URL = "https://issues.gerritcodereview.com/issues/new?component=1370071" 170BUG_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
176VERSION = (2, 37) 173VERSION = (2, 39)
177 174
178# increment this if the MAINTAINER_KEYS block is modified 175# increment this if the MAINTAINER_KEYS block is modified
179KEYRING_VERSION = (2, 3) 176KEYRING_VERSION = (2, 3)