Skip to content

Commit 9b6a7ac

Browse files
committed
fix bgg release script
1 parent c5b7c21 commit 9b6a7ac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/domdiv/tools/bgg_release.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from zipfile import ZIP_DEFLATED, ZipFile
33

44
import domdiv
5+
import domdiv.config_options
56
import domdiv.main
67

78
gen_dir = "sumpfork_dividers"
@@ -24,8 +25,8 @@ def run_generator(args, main):
2425
fname = args[-1]
2526
print(args)
2627
print(":::Generating " + fname)
27-
options = domdiv.main.parse_opts(args)
28-
options = domdiv.main.clean_opts(options)
28+
options = domdiv.config_options.parse_opts(args)
29+
options = domdiv.config_options.clean_opts(options)
2930
domdiv.main.generate(options)
3031
return fname
3132

0 commit comments

Comments
 (0)