Skip to content

Commit

Permalink
Remove trailing comma that was causing a syntax error on Python 3.4 h…
Browse files Browse the repository at this point in the history
…osts.
  • Loading branch information
bzh-bzh committed Nov 12, 2018
1 parent d9ff100 commit b7467d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ocflib/account/manage.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,9 @@ def modify_ldap_attributes(username, attributes, **kwargs):
ldap_ocf.modify_ldap_entry(
utils.dn_for_username(username),
attributes,
**kwargs,
**kwargs
)
# TODO: Add trailing comma to **kwargs for Python 3.6+


def _notify_password_change(username, comment=None):
Expand Down

0 comments on commit b7467d2

Please sign in to comment.