Changeset 2239

Show
Ignore:
Timestamp:
05/09/05 09:10:54 (19 years ago)
Author:
jerome
Message:

Fix for strange values in job-originating-hostname

Location:
pykota/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/cupspykota

    r2217 r2239  
    221221            self.logdebug("Client Hostname : %s" % (clienthost or "Unknown"))     
    222222            self.logdebug("Billing Code : %s" % (billingcode or "None"))     
    223             os.environ["PYKOTAJOBORIGINATINGHOSTNAME"] = clienthost or "" 
    224             os.environ["PYKOTAJOBBILLING"] = billingcode or "" 
     223            os.environ["PYKOTAJOBORIGINATINGHOSTNAME"] = str(clienthost or "") 
     224            os.environ["PYKOTAJOBBILLING"] = str(billingcode or "") 
    225225             
    226226            # enters first phase 
  • pykota/trunk/NEWS

    r2237 r2239  
    2222PyKota NEWS : 
    2323        
     24    - 1.23alpha1 :    
     25     
     26        - Fix for strange values in job-originating-hostname 
     27         
    2428    - 1.22 :  
    2529     
  • pykota/trunk/pykota/version.py

    r2237 r2239  
    2222# 
    2323 
    24 __version__ = "1.22_unofficial" 
     24__version__ = "1.23alpha1_unofficial" 
    2525 
    2626__doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""