From 41072313401c092d115eb8ae98f2327854b031e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Mon, 27 Feb 2017 16:15:25 +0100 Subject: [PATCH] Fix a typo --- taiga/importers/github/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taiga/importers/github/tasks.py b/taiga/importers/github/tasks.py index 11796d84..001ccfd3 100644 --- a/taiga/importers/github/tasks.py +++ b/taiga/importers/github/tasks.py @@ -31,7 +31,7 @@ logger = logging.getLogger('taiga.importers.github') @app.task(bind=True) def import_project(self, user_id, token, project_id, options): - user = User.object.get(id=user_id) + user = User.objects.get(id=user_id) importer = GithubImporter(user, token) try: project = importer.import_project(project_id, options)