| <type 'exceptions.OSError'> | Python 2.6.6: /usr/bin/python Wed May 22 08:34:54 2013 |
A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.
| /usr/lib/cgi-bin/darcsweb.cgi in |
| 2541 # see what should we do according to the received action |
| 2542 if action == "summary": |
| 2543 do_summary() |
| 2544 |
| 2545 elif action == "commit": |
| do_summary = <function do_summary> |
| /usr/lib/cgi-bin/darcsweb.cgi in do_summary() |
| 1460 # we should optimize this, it's a pity to go in such a mess for just |
| 1461 # one hash |
| 1462 ps = get_last_patches(1) |
| 1463 |
| 1464 print '<div class="title"> </div>' |
| ps undefined, global get_last_patches = <function get_last_patches> |
| /usr/lib/cgi-bin/darcsweb.cgi in get_last_patches(last=1, topi=0, fname=None) |
| 907 s = "-s --last=%d" % toget |
| 908 |
| 909 handler = get_changes_handler(s) |
| 910 |
| 911 # return the list of all the patch objects |
| handler undefined, global get_changes_handler = <function get_changes_handler>, s = '-s --last=1' |
| /usr/lib/cgi-bin/darcsweb.cgi in get_changes_handler(params='-s --last=1') |
| 882 |
| 883 # get the xml output and parse it |
| 884 xmlf = run_darcs("changes --xml-output " + params) |
| 885 parser.parse(XmlInputWrapper(xmlf)) |
| 886 xmlf.close() |
| xmlf undefined, global run_darcs = <function run_darcs>, params = '-s --last=1' |
| /usr/lib/cgi-bin/darcsweb.cgi in run_darcs(params='changes --xml-output -s --last=1') |
| 629 """Runs darcs on the repodir with the given params, return a file |
| 630 object with its output.""" |
| 631 os.chdir(config.repodir) |
| 632 try: |
| 633 original_8bit_setting = os.environ['DARCS_DONT_ESCAPE_8BIT'] |
| global os = <module 'os' from '/usr/lib/python2.6/os.pyc'>, os.chdir = <built-in function chdir>, global config = <class __main__.config>, config.repodir = '/project/cl-dwim/public_html/darcs/postmodern/' |
<type 'exceptions.OSError'>: [Errno 2] No such file or directory: '/project/cl-dwim/public_html/darcs/postmodern/'
args =
(2, 'No such file or directory')
errno =
2
filename =
'/project/cl-dwim/public_html/darcs/postmodern/'
message =
''
strerror =
'No such file or directory'