Commit e2e2d895 authored by Julien Muchembled's avatar Julien Muchembled

doc: update comment in neolog about Python issue 13773

parent 188c55f9
...@@ -41,8 +41,8 @@ class Log(object): ...@@ -41,8 +41,8 @@ class Log(object):
name, ext = name.rsplit(os.extsep, 1) name, ext = name.rsplit(os.extsep, 1)
ZipFile = comp_dict[ext] ZipFile = comp_dict[ext]
except (KeyError, ValueError): except (KeyError, ValueError):
# WKRD: Python does not support URI so we can't open in read-only # BBB: Python 2 does not support URI so we can't open in read-only
# mode. See http://bugs.python.org/issue13773 # mode. See https://bugs.python.org/issue13773
os.stat(db_path) # do not create empty DB if file is missing os.stat(db_path) # do not create empty DB if file is missing
self._db = sqlite3.connect(db_path) self._db = sqlite3.connect(db_path)
else: else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment