From 158506bc204b1dce590c61a0284e3dc49bf9b032 Mon Sep 17 00:00:00 2001 From: Michael Reichenbach Date: Mon, 8 Mar 2021 14:52:36 +0100 Subject: [PATCH] fix: command line args of mydumper regex --- src/restic_compose_backup/containers_db.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/restic_compose_backup/containers_db.py b/src/restic_compose_backup/containers_db.py index f5e6b82..1dae436 100644 --- a/src/restic_compose_backup/containers_db.py +++ b/src/restic_compose_backup/containers_db.py @@ -50,7 +50,7 @@ class MariadbContainer(Container): f"{destination}", "--no-views", "--compress", - "--regex '^(?!(mysql\.))'" + "'^(?!(mysql\.))'" ] def backup(self): @@ -118,7 +118,8 @@ class MysqlContainer(Container): f"{destination}", "--no-views", "--compress", - "--regex '^(?!(mysql\.))'" + "--regex", + "'^(?!(mysql\.))'" ] def backup(self):