from .cfg_app import PpCfgAppError, PpConfigApplication
-__version__ = '0.8.3'
+__version__ = '0.8.4'
LOG = logging.getLogger(__name__)
# =============================================================================
if 'user' in section:
user = section['user'].lower().strip()
- if not schema:
+ if not user:
LOG.error('Invalid source database user {!r} in configuration section {!r} found.'.format(
section['user'], section_name))
self.config_has_errors = True
if 'user' in section:
user = section['user'].lower().strip()
- if not schema:
+ if not user:
LOG.error('Invalid target database user {!r} in configuration section {!r} found.'.format(
section['user'], section_name))
self.config_has_errors = True