We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d19556 commit 13b7be0Copy full SHA for 13b7be0
gitea_import_actions.py
@@ -25,7 +25,7 @@
25
for line in f:
26
line_clean = line.rstrip('\n')
27
line_split = line_clean.split(',')
28
- val = (USERID, 5, USERID, REPOID, 0, BRANCH, 1, int(line_split[1]))
+ val = (USERID, 5, USERID, REPOID, 0, BRANCH, 1, int(line_split[1])) # 5 means commit
29
print(val)
30
mycursor.execute(sql, val)
31
0 commit comments