From 5120e365b4d86ac5064b67044e75c2ab511332c2 Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Sun, 23 Nov 2025 20:07:51 -0800 Subject: [PATCH] Undid the bug prior to committing the fix --- typeclasses/readables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typeclasses/readables.py b/typeclasses/readables.py index 9099fed..93c90c9 100755 --- a/typeclasses/readables.py +++ b/typeclasses/readables.py @@ -121,7 +121,7 @@ class WriteableBook(Book): myfile.write(f"> User: {writer.account.name}\n") myfile.write(f"> Desc: {writer.db._sdesc}\n") - (city, region, country, _) = location(self) + (city, region, country, _) = location(writer) if country: myfile.write(f"> From: {city}, {region}, {country}\n") else: