Author: dmeyer
Date: Fri Mar 23 17:59:25 2007
New Revision: 2594

Modified:
   trunk/base/src/distribution/svn2log.py

Log:
only create ChangeLog if there is a .svn

Modified: trunk/base/src/distribution/svn2log.py
==============================================================================
--- trunk/base/src/distribution/svn2log.py      (original)
+++ trunk/base/src/distribution/svn2log.py      Fri Mar 23 17:59:25 2007
@@ -140,7 +140,7 @@
 
 
 def svn2log(module):
-    if not os.path.isfile('ChangeLog.in'):
+    if not os.path.isfile('ChangeLog.in') or not os.path.isdir('.svn'):
         return
     prefix = [ module ]
     users = {}

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to