aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/apps/info.py
diff options
context:
space:
mode:
authorMatthias Baumgartner <dev@igsor.net>2023-04-05 17:22:59 +0200
committerMatthias Baumgartner <dev@igsor.net>2023-04-05 17:22:59 +0200
commit0b6b1d27756d1c02a2a667ebfc1a119081ff079f (patch)
treeed1dacee986c3b0bf1387fed58c6128616ced571 /bsie/apps/info.py
parentef50c1895c810d7a03bc139587a345273701cdbe (diff)
downloadbsie-0b6b1d27756d1c02a2a667ebfc1a119081ff079f.tar.gz
bsie-0b6b1d27756d1c02a2a667ebfc1a119081ff079f.tar.bz2
bsie-0b6b1d27756d1c02a2a667ebfc1a119081ff079f.zip
config file fix
Diffstat (limited to 'bsie/apps/info.py')
-rw-r--r--bsie/apps/info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsie/apps/info.py b/bsie/apps/info.py
index e27b70b..b6494da 100644
--- a/bsie/apps/info.py
+++ b/bsie/apps/info.py
@@ -23,7 +23,7 @@ def main(argv):
"""Show information from BSIE."""
parser = argparse.ArgumentParser(description=main.__doc__, prog='info')
parser.add_argument('--config', type=str,
- default=os.path.join(os.path.dirname(__file__), _loader.DEFAULT_CONFIG_FILE),
+ default=_loader.DEFAULT_CONFIG_FILE,
help='Path to the config file.')
parser.add_argument('what', choices=('predicates', 'schema'),
help='Select what information to show.')