From c0aad7de18d281b98b7f13eb7928b206a5bd48b4 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 19 Oct 2023 05:12:13 -0400 Subject: [PATCH] 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 Commit-Queue: Mike Frysinger Tested-by: Mike Frysinger --- repo | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/repo b/repo index 95f9df88..36a2e0ea 100755 --- a/repo +++ b/repo @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding:utf-8 -*- # # Copyright (C) 2008 The Android Open Source Project # @@ -22,8 +21,6 @@ It is used to get an initial repo client checkout, and after that it runs the copy of repo in the checkout. """ -from __future__ import print_function - import datetime import os import platform @@ -173,7 +170,7 @@ if not REPO_REV: BUG_URL = "https://issues.gerritcodereview.com/issues/new?component=1370071" # increment this whenever we make important changes to this script -VERSION = (2, 37) +VERSION = (2, 39) # increment this if the MAINTAINER_KEYS block is modified KEYRING_VERSION = (2, 3)