From 7248c322631748d3dc1e8790a361e7400845ffb4 Mon Sep 17 00:00:00 2001 From: Daniel James Date: Thu, 7 Dec 2023 16:54:00 +0000 Subject: [PATCH] Fix typo in the word 'landscape' in __init__.py --- ocitysmap/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocitysmap/__init__.py b/ocitysmap/__init__.py index c3b4d34..a5612f9 100644 --- a/ocitysmap/__init__.py +++ b/ocitysmap/__init__.py @@ -702,7 +702,7 @@ class OCitySMap: for p in self.get_all_paper_sizes(section): if (p[1] == width and p[2] == height) or (p[1] == height and p[2] == width): if width > height: - return "%s (landsacape)" % p[0] + return "%s (landscape)" % p[0] else: return "%s (portrait)" % p[0]