From 7a4c3a71f550a9c15901521219dfdecbabf7baa7 Mon Sep 17 00:00:00 2001 From: Vincent A Date: Sun, 19 May 2019 20:32:13 +0200 Subject: [PATCH] stable_backport: force creating compat/__init__.py --- tools/stable_backport.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/stable_backport.py b/tools/stable_backport.py index bd2b05c227..002875f758 100755 --- a/tools/stable_backport.py +++ b/tools/stable_backport.py @@ -38,8 +38,8 @@ def log(message, success='done'): def create_compat_dir(name): if not path.exists(name): makedirs(name) - with open(path.join(name, '__init__.py'), 'w'): - pass + with open(path.join(name, '__init__.py'), 'w'): + pass MANUAL_PORTS = [ -- GitLab