From 2cecfb63c34fbf3e1f7daa8d63f7644ac8c1248a Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Tue, 30 Apr 2019 23:09:43 -0700 Subject: [PATCH] Use the right file name --- builders/windows-builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builders/windows-builder.py b/builders/windows-builder.py index 4357997..9351b88 100644 --- a/builders/windows-builder.py +++ b/builders/windows-builder.py @@ -175,7 +175,7 @@ class WindowsBuilder(Builder): Program=program, Protocol='udp', Scope='any')) # Add the file association XML config_dir = os.path.dirname(self.config_path) - with open(os.path.join(config_dir, 'file_associations.xml')) as assoc_file: + with open(os.path.join(config_dir, 'file-associations.xml')) as assoc_file: file_assoc = parse(assoc_file) component.append(file_assoc.getroot()) element.append(component)