From 7eb2bc733943d81edcfca4918a3e90d2f1639ea1 Mon Sep 17 00:00:00 2001 From: Doug Friedman Date: Wed, 13 Mar 2019 11:54:56 -0400 Subject: [PATCH] Resolves [SR-9941] https://bugs.swift.org/browse/SR-9941 Removes usage of deprecated python sytax in update-checkout --- utils/update_checkout/__init__.py | 2 +- utils/update_checkout/update_checkout/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/update_checkout/__init__.py b/utils/update_checkout/__init__.py index 7d293923c962d..99cc1c7c3d1d1 100644 --- a/utils/update_checkout/__init__.py +++ b/utils/update_checkout/__init__.py @@ -1,4 +1,4 @@ -from update_checkout import main +from .update_checkout import main __all__ = ["main"] diff --git a/utils/update_checkout/update_checkout/__init__.py b/utils/update_checkout/update_checkout/__init__.py index 7d293923c962d..99cc1c7c3d1d1 100644 --- a/utils/update_checkout/update_checkout/__init__.py +++ b/utils/update_checkout/update_checkout/__init__.py @@ -1,4 +1,4 @@ -from update_checkout import main +from .update_checkout import main __all__ = ["main"]