Show
Ignore:
Timestamp:
10/12/04 00:53:06 (20 years ago)
Author:
jalet
Message:

Postponed string interpolation to help message's output method

Files:
1 modified

Legend:

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

    r1795 r1803  
    2222# 
    2323# $Log$ 
     24# Revision 1.128  2004/10/11 22:53:06  jalet 
     25# Postponed string interpolation to help message's output method 
     26# 
    2427# Revision 1.127  2004/10/11 12:48:38  jalet 
    2528# Adds fake translation marker 
     
    582585        """Displays command line usage, then exists successfully.""" 
    583586        self.clean() 
    584         print _(self.documentation) 
     587        print _(self.documentation) % (version.__version__, version.__author__) 
    585588        sys.exit(0) 
    586589