Show
Ignore:
Timestamp:
11/18/04 07:01:53 (19 years ago)
Author:
jalet
Message:

Fix for the fix

Files:
1 modified

Legend:

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

    r1943 r1944  
    2222# 
    2323# $Log$ 
     24# Revision 1.144  2004/11/18 06:01:53  jalet 
     25# Fix for the fix 
     26# 
    2427# Revision 1.143  2004/11/18 05:54:15  jalet 
    2528# Fix problem with spaces at the end of filenames in LPRng 
     
    13721375                                raise PyKotaToolError, "Unable to find the file which holds the job's datas. Please file a bug report for PyKota." 
    13731376                            else :     
    1374                                 inputfile = os.path.join(spooldir, df_name) 
     1377                                inputfile = os.path.join(spooldir, df_name) # no need to strip() 
    13751378                        else :     
    1376                             inputfile = os.path.join(spooldir, "d" + cftransfername[1:]) 
     1379                            inputfile = os.path.join(spooldir, "d" + cftransfername[1:]) # no need to strip() 
    13771380                    else :     
    1378                         inputfile = os.path.join(spooldir, df_name) 
     1381                        inputfile = os.path.join(spooldir, df_name) # no need to strip() 
    13791382                else :     
    1380                     inputfile = os.path.join(spooldir, df_name) 
     1383                    inputfile = os.path.join(spooldir, df_name) # no need to strip() 
    13811384            else :     
    1382                 inputfile = os.path.join(spooldir, df_name) 
    1383             inputfile = inputfile.strip()     
     1385                inputfile = os.path.join(spooldir, df_name.strip()) 
    13841386                 
    13851387            if jseen and Pseen and nseen and rseen :