diff options
Diffstat (limited to 'python/qpid/messaging/endpoints.py')
| -rw-r--r-- | python/qpid/messaging/endpoints.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/qpid/messaging/endpoints.py b/python/qpid/messaging/endpoints.py index 8bddc96bc8..62423ca7d5 100644 --- a/python/qpid/messaging/endpoints.py +++ b/python/qpid/messaging/endpoints.py @@ -710,7 +710,7 @@ class Session: self.connection._remove_session(self) def _mangle(addr): - if addr.startswith("#"): + if addr and addr.startswith("#"): return str(uuid4()) + addr else: return addr |
