From 86b65771f30c59c6a43164020253d92a2abc275e Mon Sep 17 00:00:00 2001 From: Chris Rybicki Date: Thu, 24 Aug 2023 12:55:49 -0400 Subject: [PATCH] fix regression --- libs/wingc/src/parser.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/wingc/src/parser.rs b/libs/wingc/src/parser.rs index 65ed1bb149a..5e7436580c6 100644 --- a/libs/wingc/src/parser.rs +++ b/libs/wingc/src/parser.rs @@ -769,7 +769,7 @@ impl<'s> Parser<'s> { self.with_error::( format!( "bring {} must be assigned to an identifier (e.g. bring \"foo\" as foo)", - module_name + module_symbol ), statement_node, ) @@ -789,7 +789,7 @@ impl<'s> Parser<'s> { self.with_error::( format!( "bring {} must be assigned to an identifier (e.g. bring \"foo\" as foo)", - module_name + module_symbol ), statement_node, )