Author: dmeyer
Date: Sun Feb 18 14:03:21 2007
New Revision: 2496

Modified:
   trunk/beacon/bin/beacon
   trunk/popcorn/bin/popcorn

Log:
use os.path.abspath not os.path.normpath

Modified: trunk/beacon/bin/beacon
==============================================================================
--- trunk/beacon/bin/beacon     (original)
+++ trunk/beacon/bin/beacon     Sun Feb 18 14:03:21 2007
@@ -13,7 +13,7 @@
 
 # insert freevo path information
 __site__ = '../lib/python%s.%s/site-packages' % sys.version_info[:2]
-__site__ = os.path.normpath(os.path.join(os.path.dirname(__file__), __site__))
+__site__ = os.path.abspath(os.path.join(os.path.dirname(__file__), __site__))
 if not __site__ in sys.path:
     sys.path.insert(0, __site__)
 

Modified: trunk/popcorn/bin/popcorn
==============================================================================
--- trunk/popcorn/bin/popcorn   (original)
+++ trunk/popcorn/bin/popcorn   Sun Feb 18 14:03:21 2007
@@ -21,7 +21,7 @@
 
 # insert freevo path information
 __site__ = '../lib/python%s.%s/site-packages' % sys.version_info[:2]
-__site__ = os.path.normpath(os.path.join(os.path.dirname(__file__), __site__))
+__site__ = os.path.abspath(os.path.join(os.path.dirname(__file__), __site__))
 if not __site__ in sys.path:
     sys.path.insert(0, __site__)
 

-------------------------------------------------------------------------
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