~openlp-core/openlp/trunk

« back to all changes in this revision

Viewing changes to openlp/plugins/bibles/forms/__init__.py

  • Committer: Tim Bentley
  • Date: 2018-01-01 17:18:46 UTC
  • mfrom: (2802.1.10 fixes)
  • Revision ID: tim.bentley@gmail.com-20180101171846-ua05yqpog4a1e321
Update the year to 2018
Add some missing copyright files
Reorder and fix the imports for all files.
Fix a timing issue with the mac build which makes it fail all the time.

lp:~trb143/openlp/textcleanups (revision 2812)
https://ci.openlp.io/job/Branch-01-Pull/2406/                          [SUCCESS]
https://ci.openlp.io/job/Branch-02a-Linux-Tests/2307/                  [SUCCESS]
https://ci.openlp.io/job/Branch-02b-macOS-Tests/102/                   [SUCCESS]
https://ci.openlp.io/job/Branch-03...

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-2017 OpenLP Developers                                   #
 
7
# Copyright (c) 2008-2018 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  #
24
24
The :mod:`forms` module contains all the ui functionality for the bibles
25
25
plugin.
26
26
"""
 
27
from .bibleimportform import BibleImportForm
27
28
from .booknameform import BookNameForm
 
29
from .editbibleform import EditBibleForm
28
30
from .languageform import LanguageForm
29
 
from .bibleimportform import BibleImportForm
30
 
from .editbibleform import EditBibleForm
31
31
 
32
32
__all__ = ['BookNameForm', 'LanguageForm', 'BibleImportForm', 'EditBibleForm']