From f15a4b6206a4366cc2884766d2f6cbbefaa0ea6d Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Thu, 22 Feb 2024 00:03:56 +0900 Subject: [PATCH] Drop wrong stacklevel This is follow-up of 077e43698e663176734ab8b2fbc3032da47f641f and fixes the wrong stack level for deprecation warning. We don't have to look for the point of upper caller. Change-Id: I615d995c42e6ff689d25f5db8026d9cd684d93ad --- os_vif/internal/ip/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os_vif/internal/ip/api.py b/os_vif/internal/ip/api.py index 51bfe34e..ea2aef6d 100644 --- a/os_vif/internal/ip/api.py +++ b/os_vif/internal/ip/api.py @@ -17,7 +17,7 @@ from oslo_log import log as logging if os.name == 'nt': warnings.warn('Support for Windows OS is deprecated.', - category=DeprecationWarning, stacklevel=3) + category=DeprecationWarning) from os_vif.internal.ip.windows.impl_netifaces import \ Netifaces as ip_lib_class else: