mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
Fix a bug in PaymentRequest __str__() function
This commit is contained in:
parent
10f037c40c
commit
4fc7da55a9
1 changed files with 1 additions and 1 deletions
|
@ -111,7 +111,7 @@ class PaymentRequest:
|
|||
self.tx = None
|
||||
|
||||
def __str__(self):
|
||||
return self.raw
|
||||
return str(self.raw)
|
||||
|
||||
def parse(self, r):
|
||||
if self.error:
|
||||
|
|
Loading…
Add table
Reference in a new issue