Skip to content
Snippets Groups Projects
Commit 919e0505 authored by Antoine Schildknecht's avatar Antoine Schildknecht
Browse files

Fix lint

parent c0a40a77
No related branches found
No related tags found
No related merge requests found
...@@ -148,7 +148,7 @@ def check_heap_size() -> tuple: ...@@ -148,7 +148,7 @@ def check_heap_size() -> tuple:
if int(heap_size) < WOWZA_RECOMMENDED_HEAP_SIZE: if int(heap_size) < WOWZA_RECOMMENDED_HEAP_SIZE:
lg.error( lg.error(
"not using recommended heap size: {0}M < {1}M (recommended)" "not using recommended heap size: {0}M < {1}M (recommended)"
.format(int(heap_size), recommended_heap_size) .format(int(heap_size), WOWZA_RECOMMENDED_HEAP_SIZE)
) )
errors += 1 errors += 1
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment