~registry/hyberia/0.4

« back to all changes in this revision

Viewing changes to hyberia/playlist.py

  • Committer: Mathieu Charron
  • Date: 2010-08-08 00:44:00 UTC
  • Revision ID: mathieu.charron@elwillow.net-20100808004400-966qunvdyx47c9pn
First bactch of change to update the project name to HYBERIA.
NOT FUNCTIONAL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
# DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS PACKAGE.
21
21
 
22
22
"""
23
 
this is the Playlist module part of the Touei project.
24
 
please see http://elwillow.net/touei for more info.
 
23
this is the Playlist module part of the HYBERIA project.
 
24
please see http://hyberia.org for more info.
25
25
"""
26
26
 
27
27
__author__ = "G-Anime"
35
35
 
36
36
# Instanciate the logging
37
37
import logging
38
 
module_logger = logging.getLogger("touei.playlist")
 
38
module_logger = logging.getLogger("hyberia.playlist")
39
39
 
40
40
class DBUnavailableException(Exception): pass
41
41
class DBExistsException(Exception): pass
45
45
class PlayList():
46
46
    def __init__(self, mkv):
47
47
        # Instanciate the logger
48
 
        self.logger = logging.getLogger("touei.playlist.Playlist")
 
48
        self.logger = logging.getLogger("hyberia.playlist.Playlist")
49
49
        self.logger.info("Creating instance")
50
50
 
51
51
        self._MkvUtils = mkv