Skip to content

Commit

Permalink
rebaseme: noramlize naming
Browse files Browse the repository at this point in the history
Signed-off-by: BenjiReis <[email protected]>
  • Loading branch information
benjamreis authored and MarkSymsCtx committed Sep 25, 2023
1 parent 5b606fb commit ba0bd7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/nfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def _scan_exports_nfs3(target, dom, element):
return dom


def _scan_exports_nfs4_only(target, transport, dom, element):
def _scan_exports_nfs4(target, transport, dom, element):
""" Scan target and return an XML DOM with target, path and accesslist.
Using NFS4 only pseudo FS.
"""
Expand Down Expand Up @@ -259,7 +259,7 @@ def scan_exports(target, transport):

# NFSv4 only
try:
return _scan_exports_nfs4_only(target, transport, dom, element)
return _scan_exports_nfs4(target, transport, dom, element)
except Exception:
util.SMlog("Unable to scan exports with NFSv4 pseudo FS mount")

Expand Down

0 comments on commit ba0bd7b

Please sign in to comment.