From: jiil.hyoun Date: Tue, 16 Oct 2012 07:17:13 +0000 (+0900) Subject: [Title] fix parser variable error X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a827dfad2b9150cb70016f4db8f262b258f46e52;p=sdk%2Ftools%2Fsdk-build.git [Title] fix parser variable error [Type] Bugfix [Module] Toolchain / [Priority] Minor [Jira#] [Redmine#] [Problem] [Cause] [Solution] [TestCase] Change-Id: I27cf62d936b3307cd1a1b3e4a6fe753c30d108dd --- diff --git a/src/common/parser.rb b/src/common/parser.rb index 7136211..b57b82d 100644 --- a/src/common/parser.rb +++ b/src/common/parser.rb @@ -241,7 +241,7 @@ class Parser if not package.nil? then pkglist.push package end if not change_version.nil? then if change_log[change_version].nil? then change_log[change_version] = change_contents.strip - else raise RuntimeError, "change log version is duplicated in \"#{file}\" file \n\t#{l}" + else raise RuntimeError, "change log version is duplicated in \"#{file}\" file \n\t#{change_version}" end end pkglist.each {|pkg| pkg.change_log = change_log }