Show
Ignore:
Timestamp:
02/10/03 02:02:17 (21 years ago)
Author:
jalet
Message:

External requester is about to work, but I must sleep

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/pykota/tool.py

    r773 r782  
    1515# 
    1616# $Log$ 
     17# Revision 1.18  2003/02/10 01:02:17  jalet 
     18# External requester is about to work, but I must sleep 
     19# 
    1720# Revision 1.17  2003/02/09 13:05:43  jalet 
    1821# Internationalization continues... 
     
    7780import smtplib 
    7881import gettext 
    79 from locale import setlocale, LC_ALL 
     82import locale 
    8083 
    8184from mx import DateTime 
     
    97100        """Initializes the command line tool.""" 
    98101        # locale stuff 
    99         setlocale(LC_ALL, "") 
     102        try : 
     103            locale.setlocale(locale.LC_ALL, "") 
     104        except locale.Error : 
     105            pass 
    100106        gettext.install("pykota") 
    101107