Skip to content

Commit 73a3336

Browse files
authored
Fixes jazzband#82 TypeError: can only concatenate list (not "tuple") to list
1 parent a04933e commit 73a3336

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

dbtemplates/management/commands/sync_templates.py

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
DIRS = []
1717
for engine in _engine_list():
1818
DIRS.extend(engine.dirs)
19+
DIRS = tuple(DIRS)
1920
app_template_dirs = get_app_template_dirs('templates')
2021

2122

0 commit comments

Comments
 (0)