Skip to content

Commit

Permalink
idaholab#487; no 'back' option in config.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mmguero committed Aug 28, 2024
1 parent 6aa9378 commit 490eccb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
MAC_BREW_DOCKER_COMPOSE_PACKAGE = 'docker-compose'
MAC_BREW_DOCKER_SETTINGS = '/Users/{}/Library/Group Containers/group.com.docker/settings.json'

BACK_LABEL = 'Back'
BACK_LABEL = 'Go Back'

LOGSTASH_JAVA_OPTS_DEFAULT = '-server -Xmx2500m -Xms2500m -Xss1536k -XX:-HeapDumpOnOutOfMemoryError -Djava.security.egd=file:/dev/./urandom -Dlog4j.formatMsgNoLookups=true'
OPENSEARCH_JAVA_OPTS_DEFAULT = '-server -Xmx10g -Xms10g -Xss256k -XX:-HeapDumpOnOutOfMemoryError -Djava.security.egd=file:/dev/./urandom -Dlog4j.formatMsgNoLookups=true'
Expand Down
3 changes: 1 addition & 2 deletions scripts/malcolm_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@

import malcolm_utils
from malcolm_utils import (
decapitalize,
deep_get,
eprint,
EscapeAnsi,
Expand Down Expand Up @@ -283,7 +282,7 @@ def YesOrNo(
# by default the "extra" button is between "Yes" and "No" which looks janky, IMO.
# so we're going to switch things around a bit.
yesLabelTmp = yesLabel.capitalize() if defaultYes else noLabel.capitalize()
noLabelTmp = decapitalize(noLabel) if defaultYes else decapitalize(yesLabel)
noLabelTmp = noLabel.capitalize() if defaultYes else yesLabel.capitalize()
replyMap = {}
if hasExtraLabel := (extraLabel is not None):
replyMap[Dialog.EXTRA] = Dialog.CANCEL
Expand Down

0 comments on commit 490eccb

Please sign in to comment.