Bug 1139407 - [mozversion] Remove non-text formatters from command line log options. r=dhunt

--HG--
extra : rebase_source : db4f410d9b6fcd5f487375a69f6091e31eb1b3f2
This commit is contained in:
Julien Pagès 2015-04-11 00:26:00 +02:00
parent 63fc2b8a9e
commit 3b79b20373
2 changed files with 5 additions and 2 deletions

View File

@ -311,7 +311,10 @@ def cli(args=sys.argv[1:]):
fxos.add_argument(
'--adb-port',
help='port running adb')
structured.commandline.add_logging_group(parser)
structured.commandline.add_logging_group(
parser,
include_formatters=structured.commandline.TEXT_FORMATTERS
)
args = parser.parse_args()
dm_type = os.environ.get('DM_TRANS', 'adb')

View File

@ -8,7 +8,7 @@ PACKAGE_VERSION = '1.2'
dependencies = ['mozdevice >= 0.44',
'mozfile >= 1.0',
'mozlog >= 2.0']
'mozlog >= 2.11']
setup(name='mozversion',
version=PACKAGE_VERSION,