Changeset

9362:31317e8edbbc

mod_scansion_record: Fix missed rename of file handle
author Kim Alvefur <zash@zash.se>
date Sat, 22 Sep 2018 14:29:39 +0200
parents 9361:3620f7b3517b
children 9363:c4ecaaf66e76
files plugins/mod_scansion_record.lua
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_scansion_record.lua	Sat Sep 22 14:28:39 2018 +0200
+++ b/plugins/mod_scansion_record.lua	Sat Sep 22 14:29:39 2018 +0200
@@ -72,5 +72,5 @@
 end);
 
 module:hook_global("server-stopping", function ()
-	fh:close();
+	scan:close();
 end);