##// END OF EJS Templates
clone-uri: fixed the problems with key mismatch that caused errors on summary page.
milka -
r4667:7c6563e6 default
parent child Browse files
Show More
@@ -594,6 +594,9 b' def credentials_filter(uri):'
594 :param uri:
594 :param uri:
595 """
595 """
596 import urlobject
596 import urlobject
597 if isinstance(uri, rhodecode.lib.encrypt.InvalidDecryptedValue):
598 return 'InvalidDecryptionKey'
599
597 url_obj = urlobject.URLObject(cleaned_uri(uri))
600 url_obj = urlobject.URLObject(cleaned_uri(uri))
598 url_obj = url_obj.without_password().without_username()
601 url_obj = url_obj.without_password().without_username()
599
602
General Comments 0
You need to be logged in to leave comments. Login now