Return-Path: Delivered-To: apmail-gump-commits-archive@www.apache.org Received: (qmail 9710 invoked from network); 8 Jul 2005 11:35:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 8 Jul 2005 11:35:33 -0000 Received: (qmail 72993 invoked by uid 500); 8 Jul 2005 11:35:33 -0000 Mailing-List: contact commits-help@gump.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: general@gump.apache.org Delivered-To: mailing list commits@gump.apache.org Received: (qmail 72978 invoked by uid 99); 8 Jul 2005 11:35:33 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Jul 2005 04:35:32 -0700 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 08 Jul 2005 04:35:32 -0700 Received: (qmail 9703 invoked by uid 65534); 8 Jul 2005 11:35:30 -0000 Message-ID: <20050708113530.9702.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r209736 - /gump/branches/Gump3/pygump/python/gump/util/__init__.py Date: Fri, 08 Jul 2005 11:35:30 -0000 To: commits@gump.apache.org From: leosimons@apache.org X-Mailer: svnmailer-1.0.2 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: leosimons Date: Fri Jul 8 04:35:28 2005 New Revision: 209736 URL: http://svn.apache.org/viewcvs?rev=209736&view=rev Log: Use 'reset' instead of 'black' for the 'default' text color so that the colored output looks okay on a white-on-black terminal Modified: gump/branches/Gump3/pygump/python/gump/util/__init__.py Modified: gump/branches/Gump3/pygump/python/gump/util/__init__.py URL: http://svn.apache.org/viewcvs/gump/branches/Gump3/pygump/python/gump/util/__init__.py?rev=209736&r1=209735&r2=209736&view=diff ============================================================================== --- gump/branches/Gump3/pygump/python/gump/util/__init__.py (original) +++ gump/branches/Gump3/pygump/python/gump/util/__init__.py Fri Jul 8 04:35:28 2005 @@ -34,7 +34,8 @@ Bright_Purple = '' Bright_Cyan = '' - Black = '' + Reset = '' + Black = Reset Grey = '' Bright_Grey = '' White = '' @@ -54,7 +55,9 @@ self.Bright_Purple = '\033[1;35m' self.Bright_Cyan = '\033[1;36m' - self.Black = '\033[0;30m' + self.Reset = '\033[0m' + #self.Black = '\033[0;30m' + self.Black = self.Reset self.Grey = '\033[0;37m' self.Bright_Grey = '\033[1;30m' self.White = '\033[1;37m'