File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 6
6
from shutil import copyfile
7
7
8
8
EURO = [
9
- "b9f4175382a404007e19d3566061e36c" ,
10
- "9076ddd6ddf0bffc24e6ac71c1353d33" ,
9
+ "b9f4175382a404007e19d3566061e36c" ,
10
+ "9076ddd6ddf0bffc24e6ac71c1353d33" ,
11
11
"1d7fb4e154e7198dfb39d16d9800844d"
12
12
]
13
13
@@ -50,7 +50,7 @@ def main():
50
50
parent = Path (str (parent ).replace (".png" , "-e.png" ))
51
51
52
52
symlinks = []
53
-
53
+
54
54
# If the file path is NOT same as with the parent folder,
55
55
# - Copy the file to the parent folder.
56
56
# by-nc/1.0/80x15.png --> by-nc/80x15.png
@@ -61,7 +61,7 @@ def main():
61
61
#
62
62
# "by-nc/1.0/80x15.png"
63
63
# Will be deleted and replaced with symbolic link
64
- # that points to "by-nc/80x15.png"
64
+ # that points to "by-nc/80x15.png"
65
65
if str (parent ) != str (f ):
66
66
symlinks = [ str (f ) ]
67
67
if not os .path .exists (str (parent )):
@@ -90,4 +90,4 @@ def main():
90
90
except Exception :
91
91
print ("ERROR (1) Unhandled exception:" , file = sys .stderr )
92
92
print (traceback .print_exc (), file = sys .stderr )
93
- sys .exit (1 )
93
+ sys .exit (1 )
You can’t perform that action at this time.
0 commit comments