summaryrefslogtreecommitdiff
path: root/bin/taler_urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'bin/taler_urls.py')
-rw-r--r--bin/taler_urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/taler_urls.py b/bin/taler_urls.py
index 6e20003..5f8aa00 100644
--- a/bin/taler_urls.py
+++ b/bin/taler_urls.py
@@ -38,4 +38,5 @@ def get_urls(envname):
def get_port(localhost_url):
parsed = urlparse(localhost_url)
- return parsed.port
+ assert(parsed.port)
+ return str(parsed.port)