From 141f03af43d74eb5b46f75e76ad13a3507950fc6 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Sat, 28 Apr 2018 21:04:24 +0200 Subject: [PATCH] Fix typo --- addon/lib/rmupdate.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addon/lib/rmupdate.tcl b/addon/lib/rmupdate.tcl index 1e94538..a7d5b0d 100644 --- a/addon/lib/rmupdate.tcl +++ b/addon/lib/rmupdate.tcl @@ -1016,7 +1016,7 @@ proc ::rmupdate::get_current_firmware_version {} { } set data [read $fp] close $fp - regexp {\s*VERSION\s*=s*([\d\.]+)\s*$} $data match current_version + regexp {\s*VERSION\s*=\s*([\d\.]+)\s*$} $data match current_version return $current_version }