From b0ff29fa2e1da70586ef0036723fc35876e88c4f Mon Sep 17 00:00:00 2001 From: Edward Date: Mon, 20 May 2019 14:06:43 -0300 Subject: [PATCH] Update deduplica_comissao.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: João Rodrigues --- deduplica_comissao.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deduplica_comissao.py b/deduplica_comissao.py index a4f3e53a7..9e2ea96d7 100644 --- a/deduplica_comissao.py +++ b/deduplica_comissao.py @@ -166,7 +166,7 @@ def deduplicate_comissao(): ## TODO: PODEM EXISTIR CASOS DA COMISSAO DE DESTINO NAO TER AUTOR, TERIA QUE CRIAR ## TODO: POR ENQUANTO OPTEI POR PEGAR A ULTIMA COMISSAO COM AUTOR CRIADO while True: - c = comissoes.pop() + c = comissoes.pop(0) try: Autor.objects.get(content_type=content_type, tipo=tipo, object_id=c) comissoes = [c] + comissoes