From 32db1ade120abf3a359b6c109941a75ca6ec54b5 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Sat, 29 Dec 2018 10:05:21 -0600 Subject: [PATCH] [py2] Fixed error when coppying VLC plugins, include settings template --- src/setup.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/setup.py b/src/setup.py index cca776c..35c1a73 100644 --- a/src/setup.py +++ b/src/setup.py @@ -25,9 +25,11 @@ from glob import glob from requests import certs def get_data(): - return [("", ["libvlccore.dll", "libvlc.dll", "cacerts.txt"]), - ("", [certs.where()], - ("plugins", glob("plugins/*/*.dll"))),]+get_locales() + return [ + ("", ["app-configuration.defaults", "libvlccore.dll", "libvlc.dll", "cacerts.txt"]), + ("", [certs.where()]), + ("plugins", glob("plugins/*/*.dll")), + ]+get_locales() def get_locales(): answer = []