fix: command line args of mydumper regex

This commit is contained in:
Michael Reichenbach 2021-03-08 14:52:36 +01:00 committed by Silthus
parent 83b5d598c2
commit 158506bc20
1 changed files with 3 additions and 2 deletions

View File

@ -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):