mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Ambiguous var name
This commit is contained in:
parent
b0e8a58b24
commit
de4b3825ab
1 changed files with 1 additions and 1 deletions
|
@ -677,7 +677,7 @@ def user_import(operation_logger, csvfile, update=False, delete=False):
|
||||||
|
|
||||||
def to_list(str_list):
|
def to_list(str_list):
|
||||||
L = str_list.split(",") if str_list else []
|
L = str_list.split(",") if str_list else []
|
||||||
L = [l.strip() for l in L]
|
L = [element.strip() for element in L]
|
||||||
return L
|
return L
|
||||||
|
|
||||||
existing_users = user_list()["users"]
|
existing_users = user_list()["users"]
|
||||||
|
|
Loading…
Add table
Reference in a new issue