Skip to content

Commit

Permalink
Merge pull request #30 from guerler/remove_mako_user_pref_000
Browse files Browse the repository at this point in the history
Remove unused library, add missing sql component
  • Loading branch information
bgruening authored Nov 9, 2016
2 parents 38d2ab3 + 46acf5c commit 3b6bf1a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lib/galaxy/webapps/galaxy/api/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import datetime
import re

from sqlalchemy import false, true, or_
from sqlalchemy import false, true, and_, or_

from galaxy import exceptions, util, web
from galaxy.exceptions import MessageException
Expand Down Expand Up @@ -318,8 +318,6 @@ def get_information(self, trans, id, **kwd):
else:
inputs.append(dict(id='name_input', name='username', label='Public name:', type='text', value=username, help='Your public name provides a means of identifying you publicly within this tool shed. Public names must be at least three characters in length and contain only lower-case letters, numbers, and the "-" character. You cannot change your public name after you have created a repository in this tool shed.'))
return {
'webapp': trans.webapp.name,
'is_admin': trans.user_is_admin(),
'email': email,
'username': username,
'addresses': [address.to_dict(trans) for address in user.addresses],
Expand Down

0 comments on commit 3b6bf1a

Please sign in to comment.