소스 검색

fix workspace export for ci

Eric Charles 5 년 전
부모
커밋
060f29b99e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      jupyterlab/labapp.py

+ 2 - 2
jupyterlab/labapp.py

@@ -385,10 +385,10 @@ class LabWorkspaceApp(JupyterApp):
     def start(self):
         try:
             super().start()
+            print('Either `export` or `import` must be specified.')
+            self.exit(1)
         except NoStart:
-            # TODO(@echarles) Discuss with @Zsailer on this...
             pass
-        print('Either `export` or `import` must be specified.')
         self.exit(0)