Skip to content

Commit 21c2cbc

Browse files
committed
Fix data_files
Signed-off-by: martinRenou <[email protected]>
1 parent 80a9973 commit 21c2cbc

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
LABEXTENSIONS_INSTALL_DIR = Path('share') / 'jupyter' / 'labextensions'
1010

1111

12-
1312
def get_data_files():
1413
extension_files = [
15-
(str(LABEXTENSIONS_INSTALL_DIR / file.relative_to(LABEXTENSIONS_DIR)), [str(file)])
14+
(str(LABEXTENSIONS_INSTALL_DIR / file.relative_to(LABEXTENSIONS_DIR).parent), [str(file)])
1615
for file in LABEXTENSIONS_DIR.rglob("*.*")
1716
]
1817

0 commit comments

Comments
 (0)