mirror of
https://github.com/markqvist/LXMF.git
synced 2025-12-17 09:24:15 -05:00
Improved error handling
This commit is contained in:
parent
704930f91a
commit
38cc471eaf
1 changed files with 16 additions and 14 deletions
16
LXMF/LXMF.py
16
LXMF/LXMF.py
|
|
@ -405,11 +405,7 @@ class LXMessage:
|
|||
else:
|
||||
return None
|
||||
|
||||
def write_to_directory(self, directory_path):
|
||||
file_name = RNS.hexrep(self.hash, delimit=False)
|
||||
file_path = directory_path+"/"+file_name
|
||||
|
||||
try:
|
||||
def packed_container(self):
|
||||
if not self.packed:
|
||||
self.pack()
|
||||
|
||||
|
|
@ -421,10 +417,16 @@ class LXMessage:
|
|||
"method": self.method
|
||||
}
|
||||
|
||||
packed_container = msgpack.packb(container)
|
||||
return msgpack.packb(container)
|
||||
|
||||
|
||||
def write_to_directory(self, directory_path):
|
||||
file_name = RNS.hexrep(self.hash, delimit=False)
|
||||
file_path = directory_path+"/"+file_name
|
||||
|
||||
try:
|
||||
file = open(file_path, "wb")
|
||||
file.write(packed_container)
|
||||
file.write(self.packed_container())
|
||||
file.close()
|
||||
|
||||
return file_path
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue