Browse Source

Fix typo in d4af07d4331e94a32bdea2c2c7bd097464425d2b (#9489)

Jason Grout 4 years ago
parent
commit
4c3b5cd708
1 changed files with 1 additions and 1 deletions
  1. 1 1
      jupyterlab/handlers/build_handler.py

+ 1 - 1
jupyterlab/handlers/build_handler.py

@@ -99,7 +99,7 @@ class Builder(object):
     def _run_build(self, app_dir, logger, kill_event, core_config, labextensions_path):
         app_options = AppOptions(
             app_dir=app_dir, logger=logger, kill_event=kill_event,
-            core_config=core_config, labextensions_path=abextensions_path)
+            core_config=core_config, labextensions_path=labextensions_path)
         try:
             return build(app_options=app_options)
         except Exception as e: