Kaydet (Commit) 502b9e1f authored tarafından Neal Norwitz's avatar Neal Norwitz

At least one Solaris box in the snake farm only supports "C" locale.

Adding try/except allows the test to pass
üst 3dd990c5
......@@ -29,7 +29,11 @@ import os, sys, string, struct, types, cPickle, cStringIO
import socket, threading, time, locale
import logging, logging.handlers, logging.config
locale.setlocale(locale.LC_ALL, '')
try:
locale.setlocale(locale.LC_ALL, '')
except ValueError:
# this happens on a Solaris box which only supports "C" locale
pass
BANNER = "-- %-10s %-6s ---------------------------------------------------\n"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment