Skip to content

Commit

Permalink
Merge pull request #5 from Senzing/issue-3.dockter.1
Browse files Browse the repository at this point in the history
Shipped with SenzingAPI 1.12.1
  • Loading branch information
docktermj authored Jun 2, 2021
2 parents 71e6dab + d7ba722 commit 24e68fa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
[markdownlint](https://dlaa.me/markdownlint/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1] - 2019-10-22

### Added to 1.0.1

- Shipped with SenzingAPI 1.12.1

## [1.0.0] - 2019-10-16

### Added to 1.0.0
Expand Down
6 changes: 3 additions & 3 deletions G2SetupConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def setupConfig(iniFileName,autoMode):
shouldContinue = False
reply = ''
if autoMode == False:
reply = userInput('\nA configuration document already exists in the database. Do you want to replace it? ')
reply = userInput('\nA configuration document already exists in the database. Do you want to replace it (yes/no)? ')
else:
reply = os.environ.get("G2SETUPCONFIG_OVERWRITE_CONFIGURATION_DOC")
if reply in ['y','Y', 'yes', 'YES']:
Expand All @@ -62,7 +62,7 @@ def setupConfig(iniFileName,autoMode):
shouldContinue = False
reply = ''
if autoMode == False:
reply = userInput('\nMigrating configuration from file to database. Do you want to continue? ')
reply = userInput('\nMigrating configuration from file to database. Do you want to continue (yes/no)? ')
else:
reply = os.environ.get("G2SETUPCONFIG_MIGRATE_CONFIG_TO_DATABASE")
if reply in ['y','Y', 'yes', 'YES']:
Expand All @@ -76,7 +76,7 @@ def setupConfig(iniFileName,autoMode):
shouldContinue = False
reply = ''
if autoMode == False:
reply = userInput('\nInstalling template configuration to database. Do you want to continue? ')
reply = userInput('\nInstalling template configuration to database. Do you want to continue (yes/no)? ')
else:
reply = os.environ.get("G2SETUPCONFIG_INSTALL_TEMPLATE_CONFIG_TO_DATABASE")
if reply in ['y','Y', 'yes', 'YES']:
Expand Down

0 comments on commit 24e68fa

Please sign in to comment.