Skip to content

Commit 2c28654

Browse files
afq984Andrey Fedoseev
authored andcommitted
compiler.handle_changed_file expects verbosity to be int (#93)
1 parent 01aad1b commit 2c28654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static_precompiler/management/commands/compilestatic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def handle(self, **options):
6565
for compiler in compilers:
6666
if compiler.is_supported(path):
6767
try:
68-
compiler.handle_changed_file(path, verbosity=options["verbosity"])
68+
compiler.handle_changed_file(path, verbosity=verbosity)
6969
except (exceptions.StaticCompilationError, ValueError) as e:
7070
print(e)
7171
break

0 commit comments

Comments
 (0)