From 8a9a7f570fdc459bd38a2705256f69b3a5ef281a Mon Sep 17 00:00:00 2001
From: kazix <tmakzmierczak@man.poznan.pl>
Date: Fri, 12 Aug 2022 12:06:03 +0200
Subject: [PATCH] cosmetic structure of csv file

---
 main.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.py b/main.py
index 858a734..06eb6bb 100644
--- a/main.py
+++ b/main.py
@@ -142,7 +142,7 @@ with open("gitlab-projects.html", "w", encoding='utf8') as outfile:
 
 with open('gitlab-projects.csv', 'w', encoding='UTF8', newline='') as f:
     writer = csv.writer(f, dialect='excel', delimiter=';')
-    csv_headers = ['Project ID', 'Project Full Name', 'Group', 'Status', 'LICENSE', 'Last activity', 'Owners']
+    csv_headers = ['Project ID', 'Project Full Name', 'Status', 'Group', 'License file', 'Last activity', 'Owners']
     writer.writerow(csv_headers)
     writer.writerows(c_project)
 print("save csv file...")
-- 
GitLab