- Timestamp:
- 04/27/09 12:16:05 (14 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Changelog
r154 r158 1 3.0.3: 2 * --version/-V prints now the version info and exits 3 1 4 3.0.2: 2 5 * If option remove is specified, then do not ask for configuration file, -
trunk/debian/changelog
r154 r158 1 pxeconfig (3.0.3-1) stable; urgency=low 2 3 * --version/-V prints now the version info and exits 4 5 -- Bas van der Vlies <basv@sara.nl> Mon, 27 Apr 2009 12:13:56 +0200 6 1 7 pxeconfig (3.0.2-1) stable; urgency=low 2 8 -
trunk/setup.py
r156 r158 13 13 14 14 setup ( name = 'pxeconfig', 15 version = '3.0. 2',15 version = '3.0.3', 16 16 description = 'SARA pxeconfig utilities', 17 17 author = 'Bas van der Vlies', -
trunk/src/pxeconfig.py.in
r156 r158 72 72 START = 'start' 73 73 END = 'end' 74 VERSION = '3.0. 2'74 VERSION = '3.0.3' 75 75 76 76 class PxeConfig(Exception): … … 288 288 options, args = parser.parse_args() 289 289 290 if options.VERSION: 291 print VERSION 292 sys.exit(0) 293 290 294 if not args: 291 295 parser.print_help() 292 296 sys.exit(0) 293 294 if options.VERSION:295 print VERSION296 sys.exit(0)297 297 298 298 # debug can be specified by the command line or options file
Note: See TracChangeset
for help on using the changeset viewer.