Skip to content

Commit 791a9ed

Browse files
committed
bugfix: git-issues-blog.py
1 parent c7e57af commit 791a9ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

git-issues-blog.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@
4343
# load changed fie list from git_diff_files.txt
4444
try:
4545
with open('git_diff_files.txt', encoding='utf-8', mode = 'r') as f:
46-
for line in f:
47-
if line.strip() != "":
48-
CHANGED.append(line.strip())
46+
for line in f:
47+
if line.strip() != "":
48+
CHANGED.append(line.strip())
4949
f.close()
5050
except:
5151
print('no changed file found')

0 commit comments

Comments
 (0)