From 3b9a3e596f1d58f1c9089a104515740de6b6a054 Mon Sep 17 00:00:00 2001 From: yaderv Date: Sat, 26 Feb 2011 17:37:12 +0000 Subject: nuevo ancho efemerides --- (limited to 'archivo.py') diff --git a/archivo.py b/archivo.py index e1c1167..72ce9db 100644 --- a/archivo.py +++ b/archivo.py @@ -100,7 +100,7 @@ def guardar_efemeride(path, file_name): current_text = lines[i][10 : len(lines[i]) - 2] for j in range(30, len(current_text),30): - current_text = current_text[:j] + '\n' + current_text[j + 1 :] + current_text = current_text[:j] + '\n' + current_text[j:] current_id = lines[i][0 : 8] di[current_id] = current_text file_new = open(path, 'wb') -- cgit v0.9.1