1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/d9325c4bf7d6/ Changeset: d9325c4bf7d6 User: jmchilton Date: 2015-02-09 17:22:22+00:00 Summary: Do not import argparse unconditionally in lib/galaxy/tools/deps/brew_exts.py. Affected #: 1 file diff -r 42648ced82d2ea0f47279fda0a244c6e8b655db3 -r d9325c4bf7d670b6024b33c9723bb83e1856db6e lib/galaxy/tools/deps/brew_exts.py --- a/lib/galaxy/tools/deps/brew_exts.py +++ b/lib/galaxy/tools/deps/brew_exts.py @@ -21,7 +21,10 @@ from __future__ import print_function -import argparse +try: + import argparse +except ImportError: + argparse = None import contextlib import json import glob 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.