Show
Ignore:
Timestamp:
02/03/08 13:17:21 (16 years ago)
Author:
jerome
Message:

Reduced the scope of some import statements.
Fixed some minor problems.
Fixed a bug in pykosd where the --color command line option was used.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/autopykota

    r3325 r3330  
    2323# 
    2424 
    25 import sys 
    26 import os 
    27  
    28 import pykota.appinit 
    29 from pykota.utils import * 
    30 from pykota.commandline import PyKotaOptionParser 
    31 from pykota.errors import PyKotaToolError 
    32 from pykota.tool import PyKotaTool 
    33  
    3425"""A tool to automate user account creation and initial balance setting. 
    3526 
     
    3930OF AN external policy IN pykota.conf 
    4031""" 
     32 
     33import sys 
     34import os 
     35 
     36import pykota.appinit 
     37from pykota.utils import run 
     38from pykota.commandline import PyKotaOptionParser 
     39from pykota.errors import PyKotaToolError 
     40from pykota.tool import PyKotaTool 
    4141 
    4242class AutoPyKota(PyKotaTool) :