From 7ab9bfe04a2619a3d180ff3dc4f1b3ee7fcf2a96 Mon Sep 17 00:00:00 2001 From: Tom Gillespie Date: Fri, 25 Aug 2023 20:59:05 -0700 Subject: [PATCH] protcur cli update to latest conventions for orthauth user_config --- protcur/protcur/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protcur/protcur/cli.py b/protcur/protcur/cli.py index c2f13cd..7a947b7 100755 --- a/protcur/protcur/cli.py +++ b/protcur/protcur/cli.py @@ -159,7 +159,7 @@ def export(self): from protcur.config import auth from hyputils.hypothesis import group_to_memfile - group_id = auth.dynamic_config.secrets('hypothesis', 'group', self.options.group_name) + group_id = auth.user_config.secrets('hypothesis', 'group', self.options.group_name) cache_file = group_to_memfile(group_id + 'protcur-cli') # note, caching is not memoization (duh) self._from_cache(cache_file, group_id, auth)