gnupic: Messages for September 2012


--> -->
 
 
<type 'exceptions.IndexError'>
Python 2.7.18: /usr/bin/python2
Tue Mar 19 10:01:11 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.

 /usr/lib64/python2.7/runpy.py in _run_module_as_main(mod_name='__main__', alter_argv=0)
    172         sys.argv[0] = fname
    173     return _run_code(code, main_globals, None,
=>  174                      "__main__", fname, loader, pkg_name)
    175 
    176 def run_module(mod_name, init_globals=None,
fname = '/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/__main__.py', loader = <zipimporter object "/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi">, pkg_name = ''
 /usr/lib64/python2.7/runpy.py in _run_code(code=<code object <module> at 0x7fa3aea0a330, file "/....org/ezmlm-browse/index.cgi/__main__.py", line 1>, run_globals={'__builtins__': <module '__builtin__' (built-in)>, '__doc__': None, '__file__': '/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/__main__.py', '__loader__': <zipimporter object "/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi">, '__name__': '__main__', '__package__': '', 'main': <module 'main' from '/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/main.py'>}, init_globals=None, mod_name='__main__', mod_fname='/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/__main__.py', mod_loader=<zipimporter object "/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi">, pkg_name='')
     70                        __loader__ = mod_loader,
     71                        __package__ = pkg_name)
=>   72     exec code in run_globals
     73     return run_globals
     74 
code = <code object <module> at 0x7fa3aea0a330, file "/....org/ezmlm-browse/index.cgi/__main__.py", line 1>, run_globals = {'__builtins__': <module '__builtin__' (built-in)>, '__doc__': None, '__file__': '/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/__main__.py', '__loader__': <zipimporter object "/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi">, '__name__': '__main__', '__package__': '', 'main': <module 'main' from '/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/main.py'>}
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/__main__.py in <module>()
      1 import main
=>    2 main.main()
main = <module 'main' from '/home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/main.py'>, main.main = <function main>
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/main.py in main()
    424 
    425         if path is not None:
    426                 main_path(path)
    427         else:
=>  428                 main_form()
global main_form = <function main_form>
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/main.py in main_form()
    378         except ImportError:
    379                 die(ctxt, "Invalid command")
=>  380         module.do(ctxt)
    381 
    382 def main():
module = <module 'commands.monthbydate' from '/home/alex/.../ezmlm-browse/index.cgi/commands/monthbydate.py'>, module.do = <function do>, global ctxt = {'cmd': 'monthbydate', 'date_sort': 'ascending',...012', 'UNIQUE_ID': 'ZfliZwaNL8cOYt_2skJowQAAAAo'}
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/commands/monthbydate.py in do(ctxt={'cmd': 'monthbydate', 'date_sort': 'ascending',...012', 'UNIQUE_ID': 'ZfliZwaNL8cOYt_2skJowQAAAAo'})
      9         header(ctxt, 'Messages for %(monthname(month))s %(month/100)s' % ctxt,
     10                    'bydate')
=>   11         month = ctxt[EZMLM].month(ctxt[MONTH])
     12         if ctxt[DATESORT][0] == 'd':
     13                 month.reverse()
month undefined, ctxt = {'cmd': 'monthbydate', 'date_sort': 'ascending',...012', 'UNIQUE_ID': 'ZfliZwaNL8cOYt_2skJowQAAAAo'}, global EZMLM = 'ezmlm', ].month undefined, global MONTH = 'month'
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/ezmlm.py in month(self=<ezmlm.EzmlmArchive instance>, month=201209)
    223                 for thread in self.threads(month):
    224                         tid = thread[THREADID]
=>  225                         thread = self.thread(tid)
    226                         subject = thread[SUBJECT]
    227                         for message in thread[MESSAGES]:
thread = {'msgcount': 1, 'msgnum': 7468, 'subject': u'Re:gpasm - how to get address of variable ?', 'threadid': 'jmlpefpmapjbbojahomf'}, self = <ezmlm.EzmlmArchive instance>, self.thread = <bound method EzmlmArchive.thread of <ezmlm.EzmlmArchive instance>>, tid = 'jmlpefpmapjbbojahomf'
 /home/alex/websites/linuxhacker.org/ezmlm-browse/index.cgi/ezmlm.py in thread(self=<ezmlm.EzmlmArchive instance>, threadid='jmlpefpmapjbbojahomf')
    240                 for item in list:
    241                         item.update(self.index[item[MSGNUM]])
=>  242                 subject = list[0][SUBJECT]
    243                 return { SUBJECT: subject, THREADID: threadid, MESSAGES: list }
    244 
subject = 'Re:gpasm - how to get address of variable ?', list = [], global SUBJECT = 'subject'

<type 'exceptions.IndexError'>: list index out of range
      args = ('list index out of range',)
      message = 'list index out of range'