doku2git: Use PEP8 spacing

This commit is contained in:
Danny Robson 2019-07-07 14:34:51 +10:00
parent 2516091c4d
commit 93c173ae10

View File

@ -324,7 +324,6 @@ class Dokuwiki:
found[None] = User(login="system", real_name="system", email="system@mlug-au.org")
return found
def _find_meta(self, root: str, type):
for dirpath, dirnames, filenames in os.walk(root):
for file in filenames:
@ -343,7 +342,6 @@ class Dokuwiki:
for change in self._read_meta(path, type):
yield change
def _read_meta(self, path: str, type):
log.debug("extracting meta from %s", path)
with open(path, 'r') as data: