mfabik / centos / centpkg

Forked from centos/centpkg 4 months ago
Clone

96fedb Import cli module in top level package

Authored and Committed by carlwgeorge 3 years ago
    Import cli module in top level package
    
    This is necessary for the man page generator to work.
    
        
file modified
+2 -0
src/centpkg/__init__.py CHANGED
@@ -20,6 +20,8 @@ import re
20
20
import warnings
21
21
22
22
from pyrpkg import Commands, rpkgError
23
+ # doc/centpkg_man_page.py uses the 'cli' import
24
+ from . import cli # noqa
23
25
from .lookaside import StreamLookasideCache, SIGLookasideCache
24
26
from pyrpkg.utils import cached_property
25
27