From 9289e1607ebf6f397c027d4a6edcf35c59bd600c Mon Sep 17 00:00:00 2001 From: Mihai Dinca Date: Wed, 6 Jun 2018 15:47:45 +0200 Subject: [PATCH] Fix deprecation warning (bsc#1095507) --- salt/utils/thin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/utils/thin.py b/salt/utils/thin.py index e4b878eb19..b99e407583 100644 --- a/salt/utils/thin.py +++ b/salt/utils/thin.py @@ -546,7 +546,7 @@ def thin_sum(cachedir, form='sha1'): thintar = gen_thin(cachedir) code_checksum_path = os.path.join(cachedir, 'thin', 'code-checksum') if os.path.isfile(code_checksum_path): - with salt.utils.fopen(code_checksum_path, 'r') as fh: + with salt.utils.files.fopen(code_checksum_path, 'r') as fh: code_checksum = "'{0}'".format(fh.read().strip()) else: code_checksum = "'0'" -- 2.13.7