|
From: <gi...@us...> - 2010-09-01 04:09:03
|
Revision: 2032
http://edk2-buildtools.svn.sourceforge.net/edk2-buildtools/?rev=2032&view=rev
Author: gikidy
Date: 2010-09-01 03:40:27 +0000 (Wed, 01 Sep 2010)
Log Message:
-----------
Fix redirect issue of STDOUT while using command-line arguments.
Modified Paths:
--------------
trunk/BaseTools/Source/Python/BPDG/BPDG.py
trunk/BaseTools/Source/Python/build/build.py
Modified: trunk/BaseTools/Source/Python/BPDG/BPDG.py
===================================================================
--- trunk/BaseTools/Source/Python/BPDG/BPDG.py 2010-08-31 00:40:33 UTC (rev 2031)
+++ trunk/BaseTools/Source/Python/BPDG/BPDG.py 2010-09-01 03:40:27 UTC (rev 2032)
@@ -22,6 +22,8 @@
#
import os
import sys
+import encodings.ascii
+
from optparse import OptionParser
from encodings import gbk
from Common import EdkLogger
Modified: trunk/BaseTools/Source/Python/build/build.py
===================================================================
--- trunk/BaseTools/Source/Python/build/build.py 2010-08-31 00:40:33 UTC (rev 2031)
+++ trunk/BaseTools/Source/Python/build/build.py 2010-09-01 03:40:27 UTC (rev 2032)
@@ -23,6 +23,7 @@
import time
import platform
import traceback
+import encodings.ascii
from struct import *
from threading import *
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|