From: Guillaume Pellerin Date: Tue, 12 Nov 2013 16:01:58 +0000 (+0100) Subject: fix course pull X-Git-Tag: 1.3-TC~13 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=411e80baa0be30114ddea2e1d69ea1621db063f5;p=teleforma.git fix course pull --- diff --git a/teleforma/management/commands/teleforma-pull-courses.py b/teleforma/management/commands/teleforma-pull-courses.py index 7e4cb05e..488b8970 100644 --- a/teleforma/management/commands/teleforma-pull-courses.py +++ b/teleforma/management/commands/teleforma-pull-courses.py @@ -17,7 +17,6 @@ class Command(BaseCommand): args = "organization_name" def handle(self, *args, **options): - organization_name = args[-2] - department_name = args[-1] + organization_name = args[-1] view = CourseListView() view.pull(organization_name)