Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
olapy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
olapy
Commits
708b16b8
Commit
708b16b8
authored
Jun 19, 2017
by
mouadh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix path
parent
86b7c7d9
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
olapy/core/mdx/executor/execute.py
olapy/core/mdx/executor/execute.py
+4
-1
No files found.
olapy/core/mdx/executor/execute.py
View file @
708b16b8
...
...
@@ -133,7 +133,10 @@ class MdxEngine:
else
:
home_directory
=
expanduser
(
"~"
)
return
os
.
path
.
join
(
home_directory
,
'olapy-data'
,
self
.
cube_folder
)
if
'olapy-data'
not
in
home_directory
:
home_directory
=
os
.
path
.
join
(
home_directory
,
'olapy-data'
)
return
os
.
path
.
join
(
home_directory
,
self
.
cube_folder
)
def
_get_tables_name
(
self
):
"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment