Close buffered_file only if it exists
This commit is contained in:
parent
80418bd11c
commit
ad5ec33869
@ -1310,7 +1310,8 @@ class Bot(TelegramBot, ObjectWithDatabase, MultiLanguageObject):
|
|||||||
['path']
|
['path']
|
||||||
)
|
)
|
||||||
finally:
|
finally:
|
||||||
buffered_file.close()
|
if buffered_file:
|
||||||
|
buffered_file.close()
|
||||||
if (
|
if (
|
||||||
type(sent_update) is dict
|
type(sent_update) is dict
|
||||||
and 'document' in sent_update
|
and 'document' in sent_update
|
||||||
|
Loading…
x
Reference in New Issue
Block a user