From 70e739916c1600b1c4fc8beca3e39496471733a5 Mon Sep 17 00:00:00 2001 From: Nicolas F Date: Fri, 11 Jun 2021 20:04:39 +0200 Subject: [PATCH] biome: don't use new Python syntax because Debian lol --- overviewer_core/biome.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overviewer_core/biome.py b/overviewer_core/biome.py index 61904f1..6b7ffe8 100644 --- a/overviewer_core/biome.py +++ b/overviewer_core/biome.py @@ -34,4 +34,4 @@ def reshape_biome_data(biome_array): elif biome_len == 1536: return biome_array.reshape((4, 96, 4)) else: - raise BiomeException(f"Can't reshape a biome of length {biome_len}") + raise BiomeException("Can't reshape a biome of length {}".format(biome_len))