Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Sep 7, 2019
1 parent afd7c21 commit 8cbd695
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jupyterlab/commands.py
Expand Up @@ -826,8 +826,8 @@ def link_package(self, path):
return self.install_extension(path)

# Warn that it is a linked package.
self.logger.warning('Installing %s as a linked package:', path)
[self.logger.warning(m) for m in messages]
self.logger.warning('Installing %s as a linked package because it does not have extension metadata:', path)
[self.logger.warning(' %s' % m) for m in messages]

# Add to metadata.
config = self._read_build_config()
Expand Down Expand Up @@ -1611,7 +1611,7 @@ def sort_key(key_value):

store = tuple(sorted(versions.items(), key=sort_key, reverse=True))
latest_deps = store[0][1].get('dependencies', {})
core_deps = core_data['dependencies']
core_deps = core_data['resolutions']
singletons = core_data['jupyterlab']['singletonPackages']

for (key, value) in latest_deps.items():
Expand Down

0 comments on commit 8cbd695

Please sign in to comment.