Merge pull request #106 from danielhjames/patch-1

Fix typo in the word 'landscape' in __init__.py
dev-debian-12
Hartmut Holzgraefe 2023-12-07 17:57:00 +01:00 zatwierdzone przez GitHub
commit f61cb1ed99
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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]