Update of /cvsroot/tmda/tmda/TMDA
In directory sc8-pr-cvs1:/tmp/cvs-serv9440/TMDA

Modified Files:
        ChangeLog Defaults.py 
Log Message:
No longer pass over errors in /etc/tmdarc. This can lead to
problems which are difficult to diagnose.


Index: ChangeLog
===================================================================
RCS file: /cvsroot/tmda/tmda/TMDA/ChangeLog,v
retrieving revision 1.243
retrieving revision 1.244
diff -u -r1.243 -r1.244
--- ChangeLog   25 Nov 2002 08:35:05 -0000      1.243
+++ ChangeLog   3 Dec 2002 00:43:43 -0000       1.244
@@ -1,3 +1,7 @@
+2002-12-02  Jason R. Mastaler  <[EMAIL PROTECTED]>
+
+       * Defaults.py (GLOBAL_TMDARC): Don't skip if there is an error.
+       
 2002-11-25  David Guerizec  <[EMAIL PROTECTED]>
 
     * Pending.py: new module

Index: Defaults.py
===================================================================
RCS file: /cvsroot/tmda/tmda/TMDA/Defaults.py,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -r1.162 -r1.163
--- Defaults.py 2 Dec 2002 22:26:43 -0000       1.162
+++ Defaults.py 3 Dec 2002 00:43:43 -0000       1.163
@@ -65,10 +65,7 @@
 # Make site-wide configuration changes to this file.
 GLOBAL_TMDARC = '/etc/tmdarc'
 if os.path.exists(GLOBAL_TMDARC):
-    try:
-        execfile(GLOBAL_TMDARC)
-    except:
-        pass                            # just skip it if there is a problem
+    execfile(GLOBAL_TMDARC)
         
 # Look for the user-config-file in the environment first then default
 # to ~/.tmdarc or ~/.tmda/config

_______________________________________
tmda-cvs mailing list
http://tmda.net/lists/listinfo/tmda-cvs

Reply via email to