gemini.git

going-flying.com gemini git repository

summary

tree

log

refs

49aa46e625384bbcc32ed5a56b0fe6012f8e1897 - Matthew Ernisse - 1612457311

I think that was the last of the syntax errors...

view tree

view raw

diff --git a/files/thoughts-to-gemini.py b/files/thoughts-to-gemini.py
index cf00391..9f704a8 100755
--- a/files/thoughts-to-gemini.py
+++ b/files/thoughts-to-gemini.py
@@ -315,7 +315,7 @@ class SuperNum(object):
 		self.val = str(val)
 
 	def __str__(self):
-		return ''.join([_u[ord(ch) - 48] for ch in self.val])
+		return ''.join([self._u[ord(ch) - 48] for ch in self.val])
 
 
 class ThoughtApi(object):