##// END OF EJS Templates
Really use shutil to copy local file on Windows.
Thomas Kluyver -
Show More
@@ -151,4 +151,4 b' class ExtensionManager(Configurable):'
151 raise ValueError("The file must have a .py or .zip extension", filename)
151 raise ValueError("The file must have a .py or .zip extension", filename)
152
152
153 filename = os.path.join(self.ipython_extension_dir, filename)
153 filename = os.path.join(self.ipython_extension_dir, filename)
154 return urlretrieve(url, filename)
154 return copy(url, filename)
General Comments 0
You need to be logged in to leave comments. Login now