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/warnpykota

    r3327 r3330  
    2222# 
    2323 
     24"""This command line tool can automatically send periodic email 
     25notifications to users or groups who have reached the limit of their 
     26printing quota.""" 
     27         
    2428import sys 
    2529import os 
     
    3236 
    3337import pykota.appinit 
    34 from pykota.utils import * 
     38from pykota.utils import run 
    3539from pykota.commandline import PyKotaOptionParser 
    3640from pykota.errors import PyKotaCommandLineError 
    3741from pykota.tool import PyKotaTool 
    3842 
    39 """This command line tool can automatically send periodic email 
    40 notifications to users or groups who have reached the limit of their 
    41 printing quota.""" 
    42          
    4343class WarnPyKota(PyKotaTool) :         
    4444    """A class for warnpykota."""