Changeset 1682

Show
Ignore:
Timestamp:
08/27/04 11:02:34 (20 years ago)
Author:
jalet
Message:

Forgot to remove some special debugging code...

Files:
1 modified

Legend:

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

    r1681 r1682  
    2222# 
    2323# $Log$ 
     24# Revision 1.33  2004/08/27 09:02:34  jalet 
     25# Forgot to remove some special debugging code... 
     26# 
    2427# Revision 1.32  2004/08/27 08:58:50  jalet 
    2528# Relax checks for PCL5 header to accomodate strange printer drivers 
     
    640643            return 
    641644             
    642         debugfile = open("/tmp/jerome_debugs_pykota.prn", "w") 
    643          
    644645        # Use a temporary file, always seekable contrary to standard input. 
    645646        self.infile = tempfile.TemporaryFile(mode="w+b") 
     
    649650                break 
    650651            self.infile.write(data) 
    651             debugfile.write(data) 
    652652        self.infile.flush()     
    653653        self.infile.seek(0) 
    654          
    655         debugfile.flush() 
    656         debugfile.close() 
    657654             
    658655    def closeFile(self) :