Show
Ignore:
Timestamp:
07/15/05 08:59:50 (19 years ago)
Author:
jerome
Message:

A constant wasn't imported correctly.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pkpgcounter/trunk/pkpgpdls/postscript.py

    r235 r237  
    5353        child = popen2.Popen4(command) 
    5454        try : 
    55             data = self.infile.read(MEGABYTE)     
     55            data = self.infile.read(pdlparser.MEGABYTE)     
    5656            while data : 
    5757                child.tochild.write(data) 
    58                 data = self.infile.read(MEGABYTE) 
     58                data = self.infile.read(pdlparser.MEGABYTE) 
    5959            child.tochild.flush() 
    6060            child.tochild.close()