Hide Forgot
Fixed in 2.0.9rcX and origin/release-2.0 upstream branch. commit ad5e0dc127a85027d5d2f8a26e746f4fdcf5e9f4 Author: Harshavardhana Ranganath <harsha> Date: Thu Nov 26 12:10:05 2009 +0000
Please give more information for file access exceptions when they are trapped. For example, the following code... try: tmp_read_fd = file (volume_path, "r") except: print "open failed" sys.exit (1) ..could be changed to ... try: tmp_read_fd = file (volume_path, "r") except: print "volume open failed: " + volume_path sys.exit (1)