Skip to content

Commit

Permalink
Fix for custom desktops
Browse files Browse the repository at this point in the history
  • Loading branch information
Himura2la authored Aug 29, 2019
1 parent ad7155e commit 6e0def0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion etc/festival_plan-parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import csv
from xml.etree import ElementTree

festival_plan_xls = f"{os.environ['USERPROFILE']}\\Desktop\\festival_plan.xls" if len(sys.argv) < 2 else sys.argv[1]
festival_plan_xls = "festival_plan.xls" if len(sys.argv) < 2 else sys.argv[1]
out_dir = os.path.split(festival_plan_xls)[0]


Expand Down

0 comments on commit 6e0def0

Please sign in to comment.