Skip to content
Snippets Groups Projects
Verified Commit 09fc20c9 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Fix passing argument to management command.

parent 7019189b
No related branches found
No related tags found
No related merge requests found
......@@ -9,5 +9,5 @@ class Backup(CronJobBase):
code = 'biscuit.core.Backup'
def do(self):
management.call_command('dbbackup', ['-z'])
management.call_command('mediabackup' ['-z'])
management.call_command('dbbackup', '-z')
management.call_command('mediabackup' '-z')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment