Skip to content

Commit

Permalink
Fix regressions in library API
Browse files Browse the repository at this point in the history
Introduced in commit 93a8bfc
  • Loading branch information
nsoranzo committed Oct 24, 2017
1 parent 0e69881 commit 9791dd2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion lib/galaxy/util/path/ntpath.py
Expand Up @@ -2,7 +2,7 @@
"""
from __future__ import absolute_import

import ntpath
import ntpath # noqa: I100 See https://github.com/PyCQA/flake8-import-order/pull/115
import sys

from . import _build_self
Expand Down
2 changes: 0 additions & 2 deletions lib/galaxy/webapps/galaxy/controllers/library_common.py
Expand Up @@ -277,7 +277,6 @@ def library_permissions( self, trans, cntrller, **kwd ):
status=escape( status ) )

@web.expose
@web.require_admin
def create_folder( self, trans, cntrller, parent_id, library_id, **kwd ):
message = escape( kwd.get( 'message', '' ) )
status = kwd.get( 'status', 'done' )
Expand Down Expand Up @@ -802,7 +801,6 @@ def ldda_permissions( self, trans, cntrller, library_id, folder_id, id, **kwd ):
status=escape( status ) )

@web.expose
@web.require_admin
def upload_library_dataset( self, trans, cntrller, library_id, folder_id, **kwd ):
message = escape( kwd.get( 'message', '' ) )
status = kwd.get( 'status', 'done' )
Expand Down

0 comments on commit 9791dd2

Please sign in to comment.