mspieth / rssdler

Automatically exported from code.google.com/p/rssdler
4 stars 0 forks source link

KeyError: 'funcName' #27

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
This can happen if you are not using python 2.5. To fix this, edit
rssdler.py, and replace the line that has:

{{{
'%(levelname)s %(funcName)s %(lineno)d %(message)s', [max(40,v),50],
}}}

with 

{{{
'%(levelname)s %(lineno)d %(message)s', [max(40,v),50],
}}}
.

Remember to preserve the spaces at the beginning of the line! A fix will be
in svn soon. Consider this identified, fixed, and closed. This is here for
anyone who has had similar issues.

Original issue reported on code.google.com by lostnihi...@gmail.com on 16 May 2008 at 9:43