From 7e141341a29de017a44ec7526982580d2a772e8c Mon Sep 17 00:00:00 2001 From: Georg Sauthoff Date: Mon, 25 Mar 2019 14:27:55 +0100 Subject: [PATCH] Fix deprecation warning --- inema/frank.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inema/frank.py b/inema/frank.py index 6be1ae6..eddbf7c 100755 --- a/inema/frank.py +++ b/inema/frank.py @@ -433,7 +433,7 @@ def run(args, conf): if ss.__len__() > 1: ss = ss[1:] i = i + 1 - log.warn('Buying postage for {} €'.format(im.compute_total()/100)) + log.warning('Buying postage for {} €'.format(im.compute_total()/100)) res = im.checkoutPDF(args.format) store_files(res, args) return 0