diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2024-03-17 11:42:17 -0300 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2024-03-17 11:42:17 -0300 |
commit | b781f38accaeea8a4aa15c8bf17393f0c69d0d0c (patch) | |
tree | bd54fcb866b82ef1b4edd5fa448ff2d778f50b20 /ganarchy/cli/debug.py | |
parent | 2a344c63c4145c2c96ac2096dcf02d64694a3dc8 (diff) |
Diffstat (limited to 'ganarchy/cli/debug.py')
-rw-r--r-- | ganarchy/cli/debug.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ganarchy/cli/debug.py b/ganarchy/cli/debug.py index e44d235..1d63c62 100644 --- a/ganarchy/cli/debug.py +++ b/ganarchy/cli/debug.py @@ -40,12 +40,12 @@ def print_data_source(data_source): title = None click.echo("\tTitle: {}".format(title)) - if ganarchy.data.DataProperty.INSTANCE_BASE_URL in data_source.get_supported_properties(): + if ganarchy.data.DataProperty.INSTANCE_BASE_URI in data_source.get_supported_properties(): try: - base_url = data_source.get_property_value(ganarchy.data.DataProperty.INSTANCE_BASE_URL) + base_url = data_source.get_property_value(ganarchy.data.DataProperty.INSTANCE_BASE_URI) except LookupError: base_url = None - click.echo("\tBase URL: {}".format(base_url)) + click.echo("\tBase URI: {}".format(base_url)) if ganarchy.data.DataProperty.REPO_LIST_SOURCES in data_source.get_supported_properties(): click.echo("\tRepo list sources:") |