Commit 2585387c by juan

se agrega try en el borrado y devolucion de archivo correjido

1 parent 9fb65e21
...@@ -60,9 +60,13 @@ class FosaDiaria(): ...@@ -60,9 +60,13 @@ class FosaDiaria():
der = line.split(" ")[0] der = line.split(" ")[0]
archivo = f"""{der}""" archivo = f"""{der}"""
print(archivo) print(archivo)
rta = archivo
file1.close() file1.close()
os.system(f"""rm {tmp}""") os.system(f"""rm {tmp}""")
return rta return rta
def LimpiarCarpertaDescarga(self): def LimpiarCarpertaDescarga(self):
try:
os.system(f"""rm {self.CarpetaDescarga}{self.cabezaera}*""") os.system(f"""rm {self.CarpetaDescarga}{self.cabezaera}*""")
except Exception as E:
print(f"Error al intentar borrar planillas diarias anteriores: {str(E)}")
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!