From 1c0e2c13d4f0acbe42e43d886df4f1067506efed Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 28 Jan 2017 02:40:27 +0300 Subject: vk: move file i/o to a separate module --- bin/online_sessions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin/online_sessions.py') diff --git a/bin/online_sessions.py b/bin/online_sessions.py index cb3f4bf..be3a4f2 100644 --- a/bin/online_sessions.py +++ b/bin/online_sessions.py @@ -335,7 +335,8 @@ def process_online_sessions( if time_from > time_to: time_from, time_to = time_to, time_from - with db_fmt.create_reader(db_path) as db_reader: + with db_fmt.open_input_file(db_path) as db_fd: + db_reader = db_fmt.create_reader(db_fd) with out_fmt.open_file(out_path) as out_fd: out_sink = out_fmt.create_sink(out_fd) out_sink.process_database( -- cgit v1.2.3