Changeset 705

Show
Ignore:
Timestamp:
04/23/06 21:05:24 (3 years ago)
Author:
mgood
Message:

AccountManagerPlugin:

apparently fileinput has a bug handling unicode filenames, so convert it to a string (fixes #323)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • accountmanagerplugin/trunk/acct_mgr/htfile.py

    r132 r705  
    7575        written = False 
    7676        if os.path.exists(filename): 
    77             for line in fileinput.input(filename, inplace=True): 
     77            for line in fileinput.input(str(filename), inplace=True): 
    7878                if line.startswith(prefix): 
    7979                    if not written and userline: