Show
Ignore:
Timestamp:
10/05/08 11:31:35 (16 years ago)
Author:
jerome
Message:

Another round of removing print statements.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/tool.py

    r3429 r3430  
    210210        except AttributeError : 
    211211            pass 
    212         print __version__ 
     212        self.display("%s\n" % __version__) 
    213213        sys.exit(0) 
    214214 
     
    219219        except AttributeError : 
    220220            pass 
    221         print _(self.documentation) % globals() 
    222         print __gplblurb__ 
    223         print 
    224         print _("Please report bugs to :"), __author__ 
     221        self.display("%s\n" % (_(self.documentation) % globals())) 
     222        self.display("%s\n\n" % __gplblurb__) 
     223        self.display("%s %s\n" % (_("Please report bugs to :"), __author__)) 
    225224        sys.exit(0) 
    226225