We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee34d7e commit 23128beCopy full SHA for 23128be
1 file changed
src/logplot/cli.py
@@ -25,7 +25,7 @@ def log_plot(log_path, config_path):
25
Plot(
26
entries=entries,
27
special_entries=special_entries,
28
- log_path=log_path,
+ log_path=os.path.abspath(log_path),
29
log_open_cmd=config.general.log_open_cmd,
30
)
31
@@ -39,4 +39,4 @@ def _select_user_config(conf_path):
39
"as command line argument or define the path as "
40
"LOGPLOT_CONFIG environment variable."
41
42
- return conf_path
+ return os.path.abspath(conf_path)
0 commit comments