Add missing return in Doc.from_disk() (closes #1330)

This commit is contained in:
ines 2017-09-18 15:31:57 +02:00
parent c013e5996f
commit 2480f8f521
1 changed files with 1 additions and 1 deletions

View File

@ -660,7 +660,7 @@ cdef class Doc:
"""
with path.open('rb') as file_:
bytes_data = file_.read()
self.from_bytes(bytes_data, **exclude)
return self.from_bytes(bytes_data, **exclude)
def to_bytes(self, **exclude):
"""Serialize, i.e. export the document contents to a binary string.