summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--bazarr/api/system/status.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bazarr/api/system/status.py b/bazarr/api/system/status.py
index 8481aff1a..645315921 100644
--- a/bazarr/api/system/status.py
+++ b/bazarr/api/system/status.py
@@ -28,7 +28,8 @@ class SystemStatus(Resource):
system_status.update({'radarr_version': get_radarr_info.version()})
system_status.update({'operating_system': platform.platform()})
system_status.update({'python_version': platform.python_version()})
- system_status.update({'bazarr_directory': os.path.dirname(os.path.dirname(__file__))})
+ system_status.update({'bazarr_directory': os.path.dirname(os.path.dirname(os.path.dirname(
+ os.path.dirname(__file__))))})
system_status.update({'bazarr_config_directory': args.config_dir})
system_status.update({'start_time': startTime})