1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-06-29 20:31:10 +02:00

Allow to have a R in front of subtitles

This commit is contained in:
Yohann D'ANELLO
2020-10-02 16:43:04 +02:00
parent 838fcecb56
commit 8fa724e848
2 changed files with 6 additions and 2 deletions

View File

@ -12,8 +12,10 @@ class Command(BaseCommand):
default='bd',
choices=['bd', 'manga', 'roman'],
help="Type of medium where the sides need to be regenerated.")
parser.add_argument('--noninteractivemode', '-n', action="store_true",
parser.add_argument('--noninteractivemode', '-ni', action="store_true",
help="Disable the interaction mode and replace existing side identifiers.")
parser.add_argument('--no-commit', '-nc', action="store_true",
help="Only show modifications, don't commit them to database.")
@transaction.atomic
def handle(self, *args, **options):
@ -47,7 +49,8 @@ class Command(BaseCommand):
self.stdout.write(self.style.WARNING(f"Replace side of {obj} from {current_side_identifier} "
f"to {generated_side_identifier}..."))
obj.side_identifier = generated_side_identifier
obj.save()
if not options["no_commit"]:
obj.save()
replaced += 1
if replaced: