Changeset 1944
- Timestamp:
- 11/18/04 07:01:53 (20 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/tool.py
r1943 r1944 22 22 # 23 23 # $Log$ 24 # Revision 1.144 2004/11/18 06:01:53 jalet 25 # Fix for the fix 26 # 24 27 # Revision 1.143 2004/11/18 05:54:15 jalet 25 28 # Fix problem with spaces at the end of filenames in LPRng … … 1372 1375 raise PyKotaToolError, "Unable to find the file which holds the job's datas. Please file a bug report for PyKota." 1373 1376 else : 1374 inputfile = os.path.join(spooldir, df_name) 1377 inputfile = os.path.join(spooldir, df_name) # no need to strip() 1375 1378 else : 1376 inputfile = os.path.join(spooldir, "d" + cftransfername[1:]) 1379 inputfile = os.path.join(spooldir, "d" + cftransfername[1:]) # no need to strip() 1377 1380 else : 1378 inputfile = os.path.join(spooldir, df_name) 1381 inputfile = os.path.join(spooldir, df_name) # no need to strip() 1379 1382 else : 1380 inputfile = os.path.join(spooldir, df_name) 1383 inputfile = os.path.join(spooldir, df_name) # no need to strip() 1381 1384 else : 1382 inputfile = os.path.join(spooldir, df_name) 1383 inputfile = inputfile.strip() 1385 inputfile = os.path.join(spooldir, df_name.strip()) 1384 1386 1385 1387 if jseen and Pseen and nseen and rseen :