make a deep copy of the string to feed to mh_python.
we were passing the same string everything else uses for input (by reference), and it appears mh_python does some uppercasing
This commit is contained in:
parent
0878c8809d
commit
9c5d78891c
|
@ -65,7 +65,9 @@ class MegaHAL(Module):
|
|||
was said.
|
||||
"""
|
||||
|
||||
line = what
|
||||
# i think this megahal module is corrupting the object while walking it,
|
||||
# so give it a stupid copy of the string. stupid stupid stupid.
|
||||
line = ''.join(what)
|
||||
reply = ""
|
||||
append_nick = False
|
||||
|
||||
|
|
Loading…
Reference in New Issue