We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 64fd52c + bca7eed commit a95c18fCopy full SHA for a95c18f
casbin/persist/adapter.py
@@ -7,7 +7,7 @@ def load_policy_line(line, model):
7
if line[:1] == "#":
8
return
9
10
- tokens = line.split(", ")
+ tokens = [token.strip() for token in line.split(",")]
11
key = tokens[0]
12
sec = key[0]
13
0 commit comments