--> -->
 
 
<type 'exceptions.OSError'>
Python 2.7.18: /usr/bin/python
Thu Mar 28 14:13:30 2024

A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.

 /www/doc/www.penicka.net/www/cgi-bin/print_files.py in <module>()
     22 
     23 if directory != '':
=>   24     utils.print_dir_content_view(directory)
     25 
     26 print(web.get_template(footer))
utils = <module 'utils' from '/www/doc/www.penicka.net/www/cgi-bin/utils.pyc'>, utils.print_dir_content_view = <function print_dir_content_view>, directory = 'school_files/divadlo/02%20Rebel%20CD%20Kdyby'
 /www/doc/www.penicka.net/www/cgi-bin/utils.py in print_dir_content_view(base_path='school_files/divadlo/02%20Rebel%20CD%20Kdyby')
     65         return
     66     
=>   67     dir_items = os.listdir('../' + base_path)
     68     
     69     if len(dir_items) == 0:
dir_items undefined, global os = <module 'os' from '/usr/lib/python2.7/os.pyc'>, os.listdir = <built-in function listdir>, base_path = 'school_files/divadlo/02%20Rebel%20CD%20Kdyby'

<type 'exceptions.OSError'>: [Errno 2] No such file or directory: '../school_files/divadlo/02%20Rebel%20CD%20Kdyby'
      args = (2, 'No such file or directory')
      errno = 2
      filename = '../school_files/divadlo/02%20Rebel%20CD%20Kdyby'
      message = ''
      strerror = 'No such file or directory'