##// END OF EJS Templates
Merge pull request #6535 from Carreau/kspec-exists...
Thomas Kluyver -
r17962:3849e0a1 merge
parent child Browse files
Show More
@@ -119,6 +119,9 class InstallNativeKernelSpec(BaseIPythonApplication):
119 if e.errno == errno.EACCES:
119 if e.errno == errno.EACCES:
120 print("Permission denied")
120 print("Permission denied")
121 self.exit(1)
121 self.exit(1)
122 if e.errno == errno.EEXIST:
123 print("File or folder already exists")
124 self.exit(1)
122 raise
125 raise
123
126
124 class KernelSpecApp(Application):
127 class KernelSpecApp(Application):
General Comments 0
You need to be logged in to leave comments. Login now