diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2021-06-04 22:38:34 +0200 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2021-06-04 19:08:50 -0400 |
commit | 8eec6d6e3d97bdb5946a0e0ecdd5920e2e60309d (patch) | |
tree | ff17d83c370a128fe4cf28d2687cc6eeef9c7e62 /grc/core/Constants.py | |
parent | 9d92ffbc091ce34bba6ea5624c7fe5fe130d5136 (diff) |
grc: use new cache filename to avoid confusion with earlier caches
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
Diffstat (limited to 'grc/core/Constants.py')
-rw-r--r-- | grc/core/Constants.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/grc/core/Constants.py b/grc/core/Constants.py index 65b4ac2ab1..ebcf9ffeea 100644 --- a/grc/core/Constants.py +++ b/grc/core/Constants.py @@ -1,5 +1,6 @@ """ Copyright 2008-2016 Free Software Foundation, Inc. +Copyright 2021 GNU Radio contributors This file is part of GNU Radio SPDX-License-Identifier: GPL-2.0-or-later @@ -20,7 +21,7 @@ BLOCK_DTD = os.path.join(DATA_DIR, 'block.dtd') DEFAULT_FLOW_GRAPH = os.path.join(DATA_DIR, 'default_flow_graph.grc') DEFAULT_HIER_BLOCK_LIB_DIR = os.path.expanduser('~/.grc_gnuradio') -CACHE_FILE = os.path.expanduser('~/.cache/grc_gnuradio/cache.json') +CACHE_FILE = os.path.expanduser('~/.cache/grc_gnuradio/cache_v2.json') BLOCK_DESCRIPTION_FILE_FORMAT_VERSION = 1 # File format versions: |