This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
DPF
mirror of
https://github.com/DISTRHO/DPF
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
Fix png2rgba.py to work with folders with dashes
pull/72/head
falkTX
5 years ago
parent
5f2d86a47e
commit
659ce2e277
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
utils/png2rgba.py
+ 1
- 1
utils/png2rgba.py
View File
@@ -155,7 +155,7 @@ if __name__ == '__main__':
print("Usage: %s <namespace> <artwork-folder>" % sys.argv[0])
quit()
namespace = sys.argv[1]
namespace = sys.argv[1]
.replace("-","_")
artFolder = sys.argv[2]
if not os.path.exists(artFolder):
Write
Preview
Loading…
Cancel
Save