We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 001b407 commit d5fc4feCopy full SHA for d5fc4fe
commits_parser.py
@@ -18,6 +18,7 @@
18
'commit id',
19
'branch',
20
)
21
+GOOGLE_MAX_CELL_LEN = 50000
22
23
24
def log_repository_commits(
@@ -42,12 +43,14 @@ def log_repository_commits(
42
43
or commit.date.astimezone(pytz.timezone(TIMEZONE)) > finish
44
):
45
continue
46
+
47
+ changed_files = '; '.join([file for file in commit.files])
48
commit_data = [
49
repository.name,
50
commit.author.username,
51
commit.author.email or EMPTY_FIELD,
52
commit.date,
- '; '.join([file for file in commit.files]),
53
+ changed_files[:GOOGLE_MAX_CELL_LEN],
54
commit._id,
55
branch,
56
]
0 commit comments