Skip to content

Commit 4e135bf

Browse files
committed
2.3.1 - correct logging messages for setuppy import + fix wrong plugin var
1 parent cf219c1 commit 4e135bf

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

privex/helpers/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,19 +88,19 @@
8888
from privex.helpers.setuppy.common import extras_require, reqs
8989
plugin.HAS_SETUPPY_COMMON = True
9090
except ImportError:
91-
log.debug('privex.helpers __init__ failed to import "setuppy", not loading setup.py packaging helpers')
91+
log.debug('privex.helpers __init__ failed to import "setuppy.common", not loading packaging helpers')
9292

9393
try:
9494
from privex.helpers.setuppy.commands import BumpCommand, ExtrasCommand
9595
plugin.HAS_SETUPPY_COMMANDS = True
9696
except ImportError:
97-
log.debug('privex.helpers __init__ failed to import "setuppy", not loading setup.py packaging helpers')
97+
log.debug('privex.helpers __init__ failed to import "setuppy.commands", not loading packaging helpers')
9898

9999
try:
100100
from privex.helpers.setuppy.bump import bump_version, get_current_ver
101-
plugin.HAS_SETUPPY_COMMANDS = True
101+
plugin.HAS_SETUPPY_BUMP = True
102102
except ImportError:
103-
log.debug('privex.helpers __init__ failed to import "setuppy", not loading setup.py packaging helpers')
103+
log.debug('privex.helpers __init__ failed to import "setuppy.bump", not loading packaging helpers')
104104

105105

106106
def _setup_logging(level=logging.WARNING):
@@ -123,7 +123,7 @@ def _setup_logging(level=logging.WARNING):
123123
log = _setup_logging()
124124
name = 'helpers'
125125

126-
VERSION = '2.3.0'
126+
VERSION = '2.3.1'
127127

128128

129129

0 commit comments

Comments
 (0)