def _read_in_config_attribute_or_use_default()

in gstack/configure.py [0:0]


def _read_in_config_attribute_or_use_default(message, default):
    attribute = raw_input(message + ' [' + default + ']: ')
    if attribute == '':
        attribute = default

    return attribute