Changeset 1795 for pykota/trunk
- Timestamp:
- 10/11/04 14:48:38 (20 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/tool.py
r1776 r1795 22 22 # 23 23 # $Log$ 24 # Revision 1.127 2004/10/11 12:48:38 jalet 25 # Adds fake translation marker 26 # 24 27 # Revision 1.126 2004/10/05 09:41:13 jalet 25 28 # Small fix for errors caused by unknown locale … … 480 483 481 484 from pykota import version, config, storage, logger, accounter, pdlanalyzer 485 486 def N_(message) : 487 """Fake translation marker for translatable strings extraction.""" 488 return message 482 489 483 490 class PyKotaToolError(Exception): … … 575 582 """Displays command line usage, then exists successfully.""" 576 583 self.clean() 577 print self.documentation584 print _(self.documentation) 578 585 sys.exit(0) 579 586