Changeset 1803 for pykota/trunk/pykota/tool.py
- Timestamp:
- 10/12/04 00:53:06 (20 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/tool.py
r1795 r1803 22 22 # 23 23 # $Log$ 24 # Revision 1.128 2004/10/11 22:53:06 jalet 25 # Postponed string interpolation to help message's output method 26 # 24 27 # Revision 1.127 2004/10/11 12:48:38 jalet 25 28 # Adds fake translation marker … … 582 585 """Displays command line usage, then exists successfully.""" 583 586 self.clean() 584 print _(self.documentation) 587 print _(self.documentation) % (version.__version__, version.__author__) 585 588 sys.exit(0) 586 589