Skip to content

Commit

Permalink
fix: error when not use plugin
Browse files Browse the repository at this point in the history
fix #64
  • Loading branch information
NateScarlet committed Jun 17, 2021
1 parent 8d9d5b1 commit a5a1177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auto_derby/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class config:
LOG_PATH = os.getenv("AUTO_DERBY_LOG_PATH", "auto_derby.log")
PLUGINS = os.getenv("AUTO_DERBY_PLUGINS", "").split(",")
PLUGINS = tuple(i for i in os.getenv("AUTO_DERBY_PLUGINS", "").split(",") if i)

single_mode_race_data_path = os.getenv(
"AUTO_DERBY_SINGLE_MODE_RACE_DATA_PATH", "single_mode_races.json"
Expand Down

0 comments on commit a5a1177

Please sign in to comment.