1 new commit in galaxy-central:
https://bitbucket.org/galaxy/galaxy-central/changeset/a7ea7728829d/ changeset: a7ea7728829d user: dan date: 2012-12-11 20:14:14 summary: Add 'checkers' namespace before calls to .check_*. affected #: 1 file
diff -r eed6dd67514b5e5ab0174f181af9514dea7a8d33 -r a7ea7728829dcc5395606bd402805d2ac972d6c6 lib/galaxy/util/shed_util.py --- a/lib/galaxy/util/shed_util.py +++ b/lib/galaxy/util/shed_util.py @@ -846,17 +846,17 @@ if is_column_based( file_path ): return True # If the file is any of the following, don't copy it. - if check_html( file_path ): + if checkers.check_html( file_path ): return False - if check_image( file_path ): + if checkers.check_image( file_path ): return False - if check_binary( name=file_path ): + if checkers.check_binary( name=file_path ): return False - if is_bz2( file_path ): + if checkers.is_bz2( file_path ): return False - if is_gzip( file_path ): + if checkers.is_gzip( file_path ): return False - if check_zip( file_path ): + if checkers.check_zip( file_path ): return False # Default to copying the file if none of the above are true. return True
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.
galaxy-commits@lists.galaxyproject.org