From 8d0d51b7faf62445d6f360aafd91f496ba11082c Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sat, 5 Jan 2019 21:52:05 -0800 Subject: [PATCH] Update wave_reader.py Comment --- wavinfo/wave_reader.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wavinfo/wave_reader.py b/wavinfo/wave_reader.py index 7c36350..b34e453 100644 --- a/wavinfo/wave_reader.py +++ b/wavinfo/wave_reader.py @@ -35,6 +35,7 @@ class WavInfoReader(): """ absolute_path = os.path.abspath(path) + #: ``file://`` url for the file. self.url = pathlib.Path(absolute_path).as_uri() with open(path, 'rb') as f: chunks = parse_chunk(f)