From 651d9d87e4b63d45fda762a40102fdb4a24aaf89 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 16 Jul 2019 13:01:38 +1000 Subject: [PATCH] Store the SVGs in the runtime directory No need to pile these into the data directory. --- tuhigui/svg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tuhigui/svg.py b/tuhigui/svg.py index 7b785fc..393a523 100644 --- a/tuhigui/svg.py +++ b/tuhigui/svg.py @@ -19,7 +19,7 @@ import xdg.BaseDirectory import svgwrite import os -DATA_PATH = os.path.join(xdg.BaseDirectory.xdg_data_home, 'tuhigui') +DATA_PATH = os.path.join(xdg.BaseDirectory.get_runtime_dir(), 'tuhigui') class JsonSvg(GObject.Object):