Skip to content

Commit f24b331

Browse files
committed
fixed wrong order of columns for commit export
1 parent c1977bc commit f24b331

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

git_logger.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -450,12 +450,12 @@ def log_commits(client: Github, repositories, csv_name, start, finish):
450450
writer.writerow(
451451
(
452452
'repository name',
453+
'commit id',
453454
'author name',
454455
'author login',
455456
'author email',
456457
'date and time',
457-
'changed files',
458-
'commit id'
458+
'changed files'
459459
)
460460
)
461461

0 commit comments

Comments
 (0)