Skip to content

Commit 7f709da

Browse files
committed
whitespace
1 parent 18107a1 commit 7f709da

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

mo2-unignore-updates/list-ignored.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@
2727
with open('meta.ini', "r", encoding='UTF-8') as read_file:
2828
file_data = read_file.read()
2929
changed_file_data = sub(ignored_regex, 'ignoredVersion=', file_data)
30+
3031
except FileNotFoundError:
3132
print(f'The mod "{mod_dir}" did not have a meta.ini file')
32-
33+
3334
# Log mod if the data changed
3435
if file_data != changed_file_data:
3536
# Log the changed mod

mo2-unignore-updates/unignore.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
with open('meta.ini', "r", encoding='UTF-8') as read_file:
2828
file_data = read_file.read()
2929
changed_file_data = sub(ignored_regex, 'ignoredVersion=', file_data)
30+
3031
except FileNotFoundError:
3132
print(f'The mod "{mod_dir}" did not have a meta.ini file')
3233

0 commit comments

Comments
 (0)