Skip to content

Commit

Permalink
zfs.py: Remove escape character which isn't needed
Browse files Browse the repository at this point in the history
Signed-off-by: Tony Asleson <[email protected]>
  • Loading branch information
tasleson committed Dec 11, 2023
1 parent 4a01257 commit 4b3c270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion targetd/backends/zfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
pools_fs = dict()
zfs_cmd = ""
zfs_enable_copy = False
ALLOWED_DATASET_NAMES = re.compile("^[A-Za-z0-9][A-Za-z0-9_.\-]*$")
ALLOWED_DATASET_NAMES = re.compile("^[A-Za-z0-9][A-Za-z0-9_.-]*$")


class VolInfo(object):
Expand Down

0 comments on commit 4b3c270

Please sign in to comment.