diff options
author | linux_geek <taseer94@gmail.com> | 2016-11-14 20:09:37 +0500 |
---|---|---|
committer | linux_geek <taseer94@gmail.com> | 2016-11-14 20:16:05 +0500 |
commit | 5f6f689bd1d49306d758ab8239edf26c3f754808 (patch) | |
tree | aa4aa3ffd89835acba64fa88345b46dc156956be | |
parent | 42cbcd2e3e67cc2893ba765b89441951d104922a (diff) |
Need to go one level up to reach project/root directory for listing purposes.
JIRA: QTIP-154
Change-Id: Ia567a847beb86919ab7118bce54f0265d587c9ac
Signed-off-by: Taseer Ahmed <taseer94@gmail.com>
-rw-r--r-- | qtip/cli/helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qtip/cli/helper.py b/qtip/cli/helper.py index a5865bce..acfecf8d 100644 --- a/qtip/cli/helper.py +++ b/qtip/cli/helper.py @@ -11,4 +11,4 @@ import os def fetch_root(): - return os.path.join(os.path.dirname(__file__), os.pardir, 'benchmarks/') + return os.path.join(os.path.dirname(__file__), os.pardir, os.pardir, 'benchmarks/') |