Show
Ignore:
Timestamp:
01/05/04 17:02:18 (20 years ago)
Author:
jalet
Message:

Dots in user, groups and printer names should be allowed.

Files:
1 modified

Legend:

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

    r1247 r1248  
    2222# 
    2323# $Log$ 
     24# Revision 1.69  2004/01/05 16:02:18  jalet 
     25# Dots in user, groups and printer names should be allowed. 
     26# 
    2427# Revision 1.68  2004/01/02 17:38:40  jalet 
    2528# This time it should be better... 
     
    395398        digits = '0123456789' 
    396399        if name[0] in asciiletters : 
    397             validchars = asciiletters + digits + "-_" 
     400            validchars = asciiletters + digits + "-_." 
    398401            for c in name[1:] : 
    399402                if c not in validchars :