diff options
Diffstat (limited to 'src/mailman_pgp/rest/root.py')
| -rw-r--r-- | src/mailman_pgp/rest/root.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman_pgp/rest/root.py b/src/mailman_pgp/rest/root.py index 627f3da..374a88d 100644 --- a/src/mailman_pgp/rest/root.py +++ b/src/mailman_pgp/rest/root.py @@ -38,8 +38,8 @@ class RESTRoot: if len(segments) == 0: return AllEncryptedLists(), [] else: - list_id = segments.pop(0) - return AnEncryptedList(list_id), segments + list_identifier = segments.pop(0) + return AnEncryptedList(list_identifier), segments @child() def addresses(self, context, segments): |
