Fix error when trying to export some formats

If we return "None" , we can't concatenate it to a str in a3a948e434/uberwriter/export_dialog.py (L277)
github/fork/sternenseemann/patch-1
Manuel Genovés 2019-12-22 02:51:40 +01:00
parent a3a948e434
commit 5615a4c3d7
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ def get_reference_files_path(reference_file_name):
"""
refs_path = get_data_file('reference_files', '%s' % (reference_file_name,))
if not os.path.exists(refs_path):
refs_path = None
refs_path = ""
return refs_path