~bialix/+junk/checkeol

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Alexander Belchenko
  • Date: 2008-03-11 12:49:24 UTC
  • Revision ID: bialix@ukr.net-20080311124924-rdc6fefku6clcd1j
Tags: v.1.1.1
check-eol help topic with information on how to use checkeol hook.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from bzrlib import (
20
20
    branch,
21
21
    errors,
 
22
    help_topics,
22
23
    lazy_import,
23
24
    )
24
25
 
33
34
    import checker
34
35
    """)
35
36
 
36
 
__version__ = '1.1.0'
37
 
version_info = 1, 1, 0
 
37
__version__ = '1.1.1'
 
38
version_info = 1,1,1
38
39
 
39
40
 
40
41
class CheckEolError(errors.BzrError):
113
114
install_hook()
114
115
 
115
116
 
 
117
help_topics.topic_registry.register_lazy('check-eol',
 
118
    'bzrlib.plugins.checkeol.help',
 
119
    'checkeol_help',
 
120
    'Information on how to use Check EOL hook',
 
121
    section=help_topics.SECT_PLUGIN)
 
122
 
 
123
 
116
124
def test_suite():
117
125
    from bzrlib.tests.TestUtil import TestLoader
118
126
    from bzrlib.plugins.checkeol import test