diff options
author | Josh Morman <jmorman@perspectalabs.com> | 2019-10-02 10:15:54 -0400 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2020-01-06 14:03:14 -0800 |
commit | 72b8a8068bff145c5f16a1d56ec852f87569145e (patch) | |
tree | a45d1c1986a24b13bd8d92e62faf0a5c59417cfd /grc/gui/Config.py | |
parent | 661993be72349d9f582fe3e0b0bcd9609edf024f (diff) |
runtime: add GR_PREFS_PATH env variable search
When looking for the config file, allow the env variable
GR_PREFS_PATH to be searched so that multiple installations
of GR each with its own prefs can be used, similar to what
is currently done in GRC
Diffstat (limited to 'grc/gui/Config.py')
-rw-r--r-- | grc/gui/Config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/Config.py b/grc/gui/Config.py index cd1062ff87..d78c3f040a 100644 --- a/grc/gui/Config.py +++ b/grc/gui/Config.py @@ -30,7 +30,7 @@ from six.moves import configparser HEADER = """\ # This contains only GUI settings for GRC and is not meant for users to edit. # -# GRC settings not accessible through the GUI are in gnuradio.conf under +# GRC settings not accessible through the GUI are in config.conf under # section [grc]. """ |