Skip to content

Commit

Permalink
buildtools/BaseTools/Source/Python/Common/ToolDefClassObject.py:
Browse files Browse the repository at this point in the history
  Added 'ToolName' parameter to EdkLogger.warn call.


git-svn-id: https://buildtools.tianocore.org/svn/buildtools/trunk/BaseTools@1256 7335b38e-4728-0410-8992-fb3ffe349368
  • Loading branch information
jljusten committed Jun 16, 2008
1 parent d15ff75 commit 753afac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Python/Common/ToolDefClassObject.py
Expand Up @@ -79,7 +79,7 @@ def LoadToolDefFile(self, FileName):
continue
NameValuePair = Line.split("=", 1)
if len(NameValuePair) != 2:
EdkLogger.warn("Line %d: not correct assignment statement, skipped" % (Index + 1))
EdkLogger.warn("tools_def.txt parser", "Line %d: not correct assignment statement, skipped" % (Index + 1))
continue

Name = NameValuePair[0].strip()
Expand Down

0 comments on commit 753afac

Please sign in to comment.