From 7969009f00b50f04818864f1e8b30ea1833b7168 Mon Sep 17 00:00:00 2001 From: Yen Chi Hsuan Date: Sun, 13 Dec 2015 03:40:55 +0800 Subject: [PATCH] [setup.py] Windows resource names are always capitalized --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e8cc4de8c..230ff33ee 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ py2exe_options = { py2exe_console = [{ "script": "./youtube_dl/__main__.py", "dest_base": "youtube-dl", - "other_resources": [(u'LOCALE_DATA', u'locale_data.zip', zipped_folder('share'))], + "other_resources": [(u'LOCALE_DATA', u'LOCALE_DATA.ZIP', zipped_folder('share'))], }] py2exe_params = {