remove unnecessary print
authorTony Mack <tmack@cs.princeton.edu>
Tue, 29 Jan 2008 21:19:10 +0000 (21:19 +0000)
committerTony Mack <tmack@cs.princeton.edu>
Tue, 29 Jan 2008 21:19:10 +0000 (21:19 +0000)
qaapi/qa/tests/plc_configure.py

index 249c7cc..4857651 100644 (file)
@@ -21,7 +21,6 @@ class plc_configure(Test):
        tmpname = '/tmp/plc-config-tty-%d' % os.getpid()
        fileconf = open(tmpname, 'w')
        for var in plc_vars:
-           print 'e %s\n%s\n' % (var, getattr(self.config, var))
            fileconf.write('e %s\n%s\n' % (var, getattr(self.config, var)))
        fileconf.write('w\nq\n')
        fileconf.close()