SF.net SVN: tmda: [2047] trunk/tmda-cgi/Theme.py
[email protected] Mon, 02 Oct 2006 13:01:21 -0700
| Newsgroups | gmane.mail.spam.tmda.cvs |
|---|---|
| Message-ID | <[email protected]> |
Revision: 2047
http://svn.sourceforge.net/tmda/?rev=2047&view=rev
Author: lack
Date: 2006-10-02 13:01:16 -0700 (Mon, 02 Oct 2006)
Log Message:
-----------
Ignore '.svn' directories
Modified Paths:
--------------
trunk/tmda-cgi/Theme.py
Modified: trunk/tmda-cgi/Theme.py
===================================================================
--- trunk/tmda-cgi/Theme.py 2006-10-02 19:01:17 UTC (rev 2046)
+++ trunk/tmda-cgi/Theme.py 2006-10-02 20:01:16 UTC (rev 2047)
@@ -60,6 +60,7 @@
for Theme in Themes:
# Skip "CVS" if you see it
if Theme == "CVS": continue
+ if Theme == ".svn": continue
# Also skip anything that is not a directory
if not os.path.isdir( os.path.join( ThemesDir, Theme ) ): continue
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.