Author: duncan
Date: Wed Jun  6 17:27:04 2007
New Revision: 9660

Modified:
   branches/rel-1/freevo/src/util/distribution.py

Log:
Added a extra check for the revision, this prints a message but continues
The idea is to remind prople to update the translations


Modified: branches/rel-1/freevo/src/util/distribution.py
==============================================================================
--- branches/rel-1/freevo/src/util/distribution.py      (original)
+++ branches/rel-1/freevo/src/util/distribution.py      Wed Jun  6 17:27:04 2007
@@ -86,11 +86,15 @@
 import re
 
 try:
-    import freevo.version as version
-    import freevo.revision as revision
-except:
-    import version
-    import revision
+    try:
+        import freevo.version as version
+        import freevo.revision as revision
+    except ImportError:
+        import version
+        import revision
+except ImportError:
+    print 'If your using a subversion of Freevo'
+    print 'You may need run "./autogen.sh nodocs"'
 
 # Get the real distutils (not the Freevo stuff)
 # This is a bad hack and will be removed when the distutils.py

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog

Reply via email to