You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gump.apache.org by le...@apache.org on 2005/01/01 17:57:29 UTC

svn commit: r123849 - /gump/branches/Dec04MajorCleanup/pygump/python/gump/engine/__init__.py

Author: leosimons
Date: Sat Jan  1 08:57:29 2005
New Revision: 123849

URL: http://svn.apache.org/viewcvs?view=rev&rev=123849
Log:
A little to enthousiastic localizing imports
Modified:
   gump/branches/Dec04MajorCleanup/pygump/python/gump/engine/__init__.py

Modified: gump/branches/Dec04MajorCleanup/pygump/python/gump/engine/__init__.py
Url: http://svn.apache.org/viewcvs/gump/branches/Dec04MajorCleanup/pygump/python/gump/engine/__init__.py?view=diff&rev=123849&p1=gump/branches/Dec04MajorCleanup/pygump/python/gump/engine/__init__.py&r1=123848&p2=gump/branches/Dec04MajorCleanup/pygump/python/gump/engine/__init__.py&r2=123849
==============================================================================
--- gump/branches/Dec04MajorCleanup/pygump/python/gump/engine/__init__.py	(original)
+++ gump/branches/Dec04MajorCleanup/pygump/python/gump/engine/__init__.py	Sat Jan  1 08:57:29 2005
@@ -84,11 +84,14 @@
 
 def _banner(version):
     """Print a fancy ASCII-art gump logo."""
+    print
+    print
     print "      _____"
     print "     |   __|_ Apache_ ___"
     print "     |  |  | | |     | . |"
     print "     |_____|___|_|_|_|  _|"
     print "                     |_|     ~ v. " + version + " ~"
+    print
     print
 
 ###