Skip to content

Commit

Permalink
fix pep 8
Browse files Browse the repository at this point in the history
  • Loading branch information
kakwa committed Jul 10, 2016
1 parent f3fabe5 commit 14afde3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ldapcherry/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ def modify(self, user=None, **params):
)
tmp = self._get_roles(user)
user_roles = tmp['roles']
user_lonely_groups = tmp['unusedgroups']
standalone_groups = tmp['unusedgroups']
roles_js = json.dumps(display_names, separators=(',', ':'))
key = self.attributes.get_key()
form = self.temp['form.tmpl'].render(
Expand All @@ -1100,7 +1100,7 @@ def modify(self, user=None, **params):
form=form,
roles=roles,
is_admin=is_admin,
standalone_groups=self._escape(user_lonely_groups, 'lonely_groups'),
standalone_groups=self._escape(standalone_groups, 'lonely_groups'),
backends_display_names=self.backends_display_names,
custom_js=self.custom_js,
notifications=self._empty_notification(),
Expand Down

0 comments on commit 14afde3

Please sign in to comment.