DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 659ce2e277f796227b48c3947f9fa53e44c335af
parent 5f2d86a47e8b7d1227be520700bdb69c75f8d237
Author: falkTX <falktx@gmail.com>
Date:   Tue, 25 Sep 2018 23:07:25 +0200

Fix png2rgba.py to work with folders with dashes

Diffstat:
Mutils/png2rgba.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils/png2rgba.py b/utils/png2rgba.py @@ -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):