Skip to content

Commit

Permalink
Standardise GocryptfsMount class name
Browse files Browse the repository at this point in the history
  • Loading branch information
daviewales committed Nov 29, 2024
1 parent c6202bd commit b79472c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion common/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def __init__(self, config_path=None, data_path=None):
_('Encryption')
),
'local_gocryptfs':(
gocryptfstools.GoCryptFS_mount,
gocryptfstools.GocryptfsMount,
_('Local encrypted') + ' (gocryptfs)',
_('Encryption'),
False
Expand Down
4 changes: 2 additions & 2 deletions common/gocryptfstools.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
from exceptions import MountException


class GoCryptFS_mount(MountControl):
class GocryptfsMount(MountControl):
"""
"""
def __init__(self, *args, **kwargs):
super(GoCryptFS_mount, self).__init__(*args, **kwargs)
super(GocryptfsMount, self).__init__(*args, **kwargs)

# Workaround for some linters.
self.path = None
Expand Down

0 comments on commit b79472c

Please sign in to comment.