From 763d66087240e1f27e7fe9a8d754267641c78ff7 Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Tue, 27 Aug 2019 16:29:23 -0300 Subject: [PATCH] Conserta erro de sintaxe --- scripts/remove_multiplos_autores.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/remove_multiplos_autores.py b/scripts/remove_multiplos_autores.py index cf64dc8f5..828713ea4 100644 --- a/scripts/remove_multiplos_autores.py +++ b/scripts/remove_multiplos_autores.py @@ -45,7 +45,7 @@ def pega_parlamentares_autores(): return parlamentares_autores -def transfere_valeres(autores): +def transfere_valores(autores): for autor in autores: for clone in autor[1:]: for autoria in clone.autoria_set.all(): @@ -77,7 +77,7 @@ def main(): autores.append(parlamentares_autores) - transfere_valeres(autores) + transfere_valores(autores) if __name__ == '__main__':