Commit e65fe98a by Owo Sugiana

Response yang mengandung spasi diganti dengan underscore

1 parent b35816ed
0.1.4 25-11-2021
----------------
- Response yang mengandung spasi diganti dengan underscore
0.1.3 16-3-2021
---------------
- Tambah log bila data memuat karakter titik dua
......
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
from .structure import RENDERER
......
......@@ -31,7 +31,7 @@ class InquiryResponse(Row):
return self.to_str()
def to_str(self):
return ':'.join(list(self))
return ':'.join(list(self)).replace(' ', '_')
def from_err(self, err):
self.values['Response Code'] = err.code
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!