Explorar o código

Org_reader: metadatas parse, be sur to return a dict if input is empty

Gendre Sébastien %!s(int64=7) %!d(string=hai) anos
pai
achega
b81cff0b6d
Modificáronse 1 ficheiros con 2 adicións e 0 borrados
  1. 2 0
      org_reader/org_reader.py

+ 2 - 0
org_reader/org_reader.py

@@ -58,6 +58,8 @@ class OrgReader(BaseReader):
         Return:
         A dict containing metadatas
         """
+        if not text_lines:
+            return {}
         expr_metadata = re.compile(r'^#\+([a-zA-Z]+):(.*)')
         return {
             expr_metadata.match(line).group(1).lower()