]> git.parisson.com Git - teleforma.git/commitdiff
change args order
authorGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Thu, 31 Dec 2015 22:58:51 +0000 (23:58 +0100)
committerGuillaume Pellerin <guillaume.pellerin@ircam.fr>
Thu, 31 Dec 2015 22:58:51 +0000 (23:58 +0100)
teleforma/management/commands/teleforma-import-seminar-media-update.py

index 01ff7c19da564dd4ef9c0bfeb81e6fde9d0d822b..67b52edcc4b9d21541331d4e4cf589b8a8903ce8 100644 (file)
@@ -103,9 +103,10 @@ class Command(BaseCommand):
     def handle(self, *args, **options):
         organization_name = args[0]
         period_name = args[1]
-        log_file = args[2]
-        media_dir = args[3]
-        domain = args[4]
+        media_dir = args[2]
+        domain = args[3]
+        log_file = args[4]
+        
         logger = Logger(log_file)
 
         self.site.domain = domain