Changeset 1887

Show
Ignore:
Timestamp:
16/11/08 18:55:40 (8 weeks ago)
Author:
duncan
svm:headrev:

cc3e1ea1-1e01-0410-8d68-8b121e83a9d5:11169
Message:

Code tidy-up

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • freevo/src/video/plugins/bilingual.py

    r1111 r1887  
    11# -*- coding: iso-8859-1 -*- 
    22# ----------------------------------------------------------------------- 
    3 # bilingual.py - A plugin to add options to play bilingual recordings. 
     3# A plugin to add options to play bilingual recordings. 
    44# ----------------------------------------------------------------------- 
    55# $Id$ 
     
    3030 
    3131 
     32import os 
    3233from os.path import join, split 
     34 
     35import config 
    3336import plugin 
    3437import menu 
    35 import os 
    36 import config 
    37 from video.encodingclient import * 
    3838from gui.AlertBox import AlertBox 
    3939from gui.PopupBox import PopupBox 
     
    5555 
    5656    def config(self): 
    57         '''config is called automatically, 
     57        """ 
     58        config is called automatically, 
    5859        freevo plugins -i video.bilingual returns the info 
    59         ''' 
     60        """ 
    6061        _debug_('config(self)', 2) 
    6162        return [ 
     
    6465 
    6566    def actions(self, item): 
    66         '''Determines if an action applies to the menu 
     67        """ 
     68        Determines if an action applies to the menu 
    6769 
    6870        Normally, the only way to record bilingual audio is with a recent 
     
    7072        left, right or both channels and this information is passed to the player 
    7173        as part of the item, i.e. item.language_selection. 
    72         ''' 
     74        """ 
    7375        _debug_('actions(self, item)', 2) 
    7476        if item.type == 'video' and item.mode == 'file':