Skip to content

Commit 425f072

Browse files
authored
Update app.py
1 parent f9cb020 commit 425f072

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def backup_old_html():
4444
if not os.path.exists(OLD_DIR):
4545
os.makedirs(OLD_DIR)
4646
timestamp = datetime.utcnow().strftime("%d-%m-%Y")
47-
backup_filename = f"index-{timestamp}.html"
47+
backup_filename = f"awesome-repos-{timestamp}.html"
4848
backup_path = os.path.join(OLD_DIR, backup_filename)
4949
shutil.move(HTML_FILE, backup_path)
5050
print(f"Backed up old index.html → {backup_path}")

0 commit comments

Comments
 (0)