summary refs log tree commit diff stats
path: root/ganarchy/cli
diff options
context:
space:
mode:
Diffstat (limited to 'ganarchy/cli')
-rw-r--r--ganarchy/cli/debug.py6
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:")