##// END OF EJS Templates
Cast the destination url to unicode in python2...
Jason Grout -
Show More
@@ -209,6 +209,7 b' def install_nbextension(path, overwrite=False, symlink=False, user=False, prefix'
209 else:
209 else:
210 if not destination:
210 if not destination:
211 destination = basename(path)
211 destination = basename(path)
212 destination = cast_unicode_py2(destination)
212 full_dest = pjoin(nbext, destination)
213 full_dest = pjoin(nbext, destination)
213 if overwrite and os.path.exists(full_dest):
214 if overwrite and os.path.exists(full_dest):
214 if verbose >= 1:
215 if verbose >= 1:
General Comments 0
You need to be logged in to leave comments. Login now