Author: dmeyer Date: Mon Jan 29 21:41:36 2007 New Revision: 9095 Modified: trunk/ui/bin/freevo trunk/ui/src/fxditem.py
Log: use local imports for fxditem internal Modified: trunk/ui/bin/freevo ============================================================================== --- trunk/ui/bin/freevo (original) +++ trunk/ui/bin/freevo Mon Jan 29 21:41:36 2007 @@ -176,7 +176,7 @@ # load the fxditem to make sure it's the first in the # mimetypes list -import fxditem +import freevo.ui.fxditem # freevo core imports import freevo.ipc Modified: trunk/ui/src/fxditem.py ============================================================================== --- trunk/ui/src/fxditem.py (original) +++ trunk/ui/src/fxditem.py Mon Jan 29 21:41:36 2007 @@ -50,11 +50,12 @@ import logging import os -from freevo.ui import util -from freevo.ui import plugin import freevo.fxdparser -from freevo.ui.menu import Item, Action, Menu +import util +import plugin + +from menu import Item, Action, Menu # get logging object log = logging.getLogger() ------------------------------------------------------------------------- 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
