trivial: remove leftover commas

This commit is contained in:
Frédéric Péters 2017-05-06 13:19:22 +02:00
parent bff5792e91
commit 0596918f9b
1 changed files with 3 additions and 3 deletions

View File

@ -30,13 +30,13 @@ class Command(BaseCommand):
help='name of file to import')
parser.add_argument(
'--clean', action='store_true', default=False,
help='Clean site before importing'),
help='Clean site before importing')
parser.add_argument(
'--if-empty', action='store_true', default=False,
help='Import only if site is empty'),
help='Import only if site is empty')
parser.add_argument(
'--overwrite', action='store_true', default=False,
help='Overwrite existing data'),
help='Overwrite existing data')
def handle(self, filename, **options):
if filename == '-':