CVS: tmda/TMDA ChangeLog,1.306,1.307 Defaults.py,1.193,1.194
"Jason R. Mastaler" <[email protected]>
| Newsgroups | gmane.mail.spam.tmda.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/tmda/tmda/TMDA In directory sc8-pr-cvs1:/tmp/cvs-serv5932/TMDA Modified Files: ChangeLog Defaults.py Log Message: Deprecate ~/.tmdarc Index: ChangeLog =================================================================== RCS file: /cvsroot/tmda/tmda/TMDA/ChangeLog,v retrieving revision 1.306 retrieving revision 1.307 diff -u -r1.306 -r1.307 --- ChangeLog 11 Jan 2004 07:36:52 -0000 1.306 +++ ChangeLog 18 Jan 2004 03:40:40 -0000 1.307 @@ -1,3 +1,7 @@ +2004-01-17 Jason R. Mastaler <[email protected]> + + * Defaults.py (TMDARC): ~/.tmdarc is deprecated. + 2004-01-11 Jason R. Mastaler <[email protected]> * MessageLogger.py (MessageLogger.write): Use Util.make_date(). Index: Defaults.py =================================================================== RCS file: /cvsroot/tmda/tmda/TMDA/Defaults.py,v retrieving revision 1.193 retrieving revision 1.194 diff -u -r1.193 -r1.194 --- Defaults.py 11 Jan 2004 06:17:09 -0000 1.193 +++ Defaults.py 18 Jan 2004 03:40:40 -0000 1.194 @@ -68,12 +68,10 @@ execfile(GLOBAL_TMDARC) # Look for the user-config-file in the environment first then default -# to ~/.tmdarc or ~/.tmda/config +# to ~/.tmda/config TMDARC = os.environ.get('TMDARC') if not TMDARC: - TMDARC = os.path.expanduser('~/.tmdarc') - if not os.path.exists(TMDARC): - TMDARC = os.path.expanduser('~/.tmda/config') + TMDARC = os.path.expanduser('~/.tmda/config') # CONFIG_EXEC # If set to 0 in GLOBAL_TMDARC, the user's TMDARC file will be parsed