##// END OF EJS Templates
Removed unneeded OSError exception handler....
Thomas Arendsen Hein -
r3840:973c6e6c default
parent child Browse files
Show More
@@ -2991,11 +2991,7 b' def dispatch(args):'
2991
2991
2992 try:
2992 try:
2993 if options['cwd']:
2993 if options['cwd']:
2994 try:
2994 os.chdir(options['cwd'])
2995 os.chdir(options['cwd'])
2996 except OSError, inst:
2997 raise util.Abort('%s: %s' %
2998 (options['cwd'], inst.strerror))
2999
2995
3000 u.updateopts(options["verbose"], options["debug"], options["quiet"],
2996 u.updateopts(options["verbose"], options["debug"], options["quiet"],
3001 not options["noninteractive"], options["traceback"],
2997 not options["noninteractive"], options["traceback"],
General Comments 0
You need to be logged in to leave comments. Login now