David F. Skoll <[email protected]> wrote: > On Debian Lenny (5.0.7) running the command "python2.5 obdaRemind.py" > gives me: > > File "obdaRemind.py", line 63 > except curses.error as e: > ^ > SyntaxError: invalid syntax > > Any ideas? Am I missing a library?
You cannot miss a library, since the program is using only modules that are shipped with Python. That said, your error is caused by a syntax change that took place in Python 3 and has been backported to Python 2.6 and 2.7, but not 2.5 and below—which means you need at least Python 2.6. _______________________________________________ Remind-fans mailing list [email protected] http://lists.roaringpenguin.com/cgi-bin/mailman/listinfo/remind-fans Remind is at http://www.roaringpenguin.com/products/remind
