CVS: tmda-cgi ChangeLog,1.69,1.70 configure,1.16,1.17
Gre7g Luterman <[email protected]>
| Newsgroups | gmane.mail.spam.tmda.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/tmda/tmda-cgi In directory sc8-pr-cvs1:/tmp/cvs-serv19808 Modified Files: ChangeLog configure Log Message: Fixed a stupid type-o in configure. Index: ChangeLog =================================================================== RCS file: /cvsroot/tmda/tmda-cgi/ChangeLog,v retrieving revision 1.69 retrieving revision 1.70 diff -u -r1.69 -r1.70 --- ChangeLog 17 Nov 2003 02:34:42 -0000 1.69 +++ ChangeLog 18 Nov 2003 04:02:49 -0000 1.70 @@ -1,3 +1,7 @@ +2003-11-17 Gre7g Luterman <[email protected]> + + * Fixed a stupid type-o in configure. + 2003-11-16 Gre7g Luterman <[email protected]> * Force user names to be lowercase. Index: configure =================================================================== RCS file: /cvsroot/tmda/tmda-cgi/configure,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- configure 18 Aug 2003 23:47:53 -0000 1.16 +++ configure 18 Nov 2003 04:02:49 -0000 1.17 @@ -169,7 +169,7 @@ readline.parse_and_bind("tab: complete") readline.set_startup_hook(SetDefault) Input = TabCompInput -except ImportError, AttributeError: +except (ImportError, AttributeError): Input = PlainInput def Ask(Question, Str, ValProg = None, TestStr = None):