We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e90cd63 commit f91a517Copy full SHA for f91a517
boltons/urlutils.py
@@ -654,7 +654,8 @@ def navigate(self, dest):
654
if dest.path.startswith(u'/'): # absolute path
655
new_path_parts = list(dest.path_parts)
656
else: # relative path
657
- new_path_parts = self.path_parts[:-1] + dest.path_parts
+ new_path_parts = list(self.path_parts[:-1]) \
658
+ + list(dest.path_parts)
659
else:
660
new_path_parts = list(self.path_parts)
661
if not query_params:
0 commit comments