Fix user_add in postgresql_user
This commit is contained in:
parent
4a3d7473fd
commit
c77ab67274
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ def user_add(cursor, user, password, role_attr_flags, encrypted, expires):
|
||||||
query.append("PASSWORD %(password)s")
|
query.append("PASSWORD %(password)s")
|
||||||
if expires is not None:
|
if expires is not None:
|
||||||
query.append("VALID UNTIL %(expires)s")
|
query.append("VALID UNTIL %(expires)s")
|
||||||
query = query.append(role_attr_flags)
|
query.append(role_attr_flags)
|
||||||
query = ' '.join(query)
|
query = ' '.join(query)
|
||||||
cursor.execute(query, query_password_data)
|
cursor.execute(query, query_password_data)
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in a new issue