Fix regular expresion on migrate_attachments script.

remotes/origin/enhancement/email-actions
Andrey Antukh 2014-09-22 11:30:00 +02:00
parent 8df1b2a799
commit ced000b109
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class Command(BaseCommand):
help = "Parses all objects and try replace old attachments url with one new"
trx = r"((?:https?)://api-taiga\.kaleidos\.net/attachments/(\d+)/[^\s]+)"
trx = r"((?:https?)://api-taiga\.kaleidos\.net/attachments/(\d+)/[^\s\"]+)"
@transaction.atomic
def handle(self, *args, **options):