commit/galaxy-central: dan: Fix for commit_util.UNDESIRABLE_DIRS in lib/galaxy/webapps/tool_shed/controllers/upload.py.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/412d5434a559/ Changeset: 412d5434a559 User: dan Date: 2013-05-17 16:47:30 Summary: Fix for commit_util.UNDESIRABLE_DIRS in lib/galaxy/webapps/tool_shed/controllers/upload.py. Affected #: 1 file diff -r 9c06caa86e2ac73f439e9b148fb200e036a06ea2 -r 412d5434a559d1d49ebcd2b24b357f466aaf688b lib/galaxy/webapps/tool_shed/controllers/upload.py --- a/lib/galaxy/webapps/tool_shed/controllers/upload.py +++ b/lib/galaxy/webapps/tool_shed/controllers/upload.py @@ -257,7 +257,7 @@ ok = os.path.basename( uploaded_file ) not in commit_util.UNDESIRABLE_FILES if ok: for file_path_item in relative_path.split( '/' ): - if file_path_item in COMMIT_UTIL.UNDESIRABLE_DIRS: + if file_path_item in commit_util.UNDESIRABLE_DIRS: undesirable_dirs_removed += 1 ok = False break Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org