~tomasgroth/openlp/portable-path

« back to all changes in this revision

Viewing changes to openlp/plugins/bibles/lib/importers/csvbible.py

  • Committer: Tomas Groth
  • Date: 2019-04-30 19:02:42 UTC
  • mfrom: (2829.2.32 openlp)
  • Revision ID: tomasgroth@yahoo.dk-20190430190242-6zwjk8724tyux70m
trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
###############################################################################
5
5
# OpenLP - Open Source Lyrics Projection                                      #
6
6
# --------------------------------------------------------------------------- #
7
 
# Copyright (c) 2008-2018 OpenLP Developers                                   #
 
7
# Copyright (c) 2008-2019 OpenLP Developers                                   #
8
8
# --------------------------------------------------------------------------- #
9
9
# This program is free software; you can redistribute it and/or modify it     #
10
10
# under the terms of the GNU General Public License as published by the Free  #
54
54
 
55
55
from openlp.core.common import get_file_encoding
56
56
from openlp.core.common.i18n import translate
57
 
from openlp.core.common.path import Path
58
57
from openlp.core.lib.exceptions import ValidationError
59
58
from openlp.plugins.bibles.lib.bibleimport import BibleImport
60
59
 
 
60
 
61
61
Book = namedtuple('Book', 'id, testament_id, name, abbreviation')
62
62
Verse = namedtuple('Verse', 'book_id_name, chapter_number, number, text')
63
63