Use the right file name

This commit is contained in:
Raoul Snyman 2019-04-30 23:09:43 -07:00
parent d4166602ea
commit 2cecfb63c3
1 changed files with 1 additions and 1 deletions

View File

@ -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)