diff en/examples/run-example @ 83:b476081a9c04

Much progress in template chapter.
author Bryan O'Sullivan <bos@serpentine.com>
date Tue, 03 Oct 2006 13:03:42 -0700
parents 53427f786a0f
children 5b80c922ebdd
line wrap: on
line diff
--- a/en/examples/run-example	Mon Oct 02 15:16:47 2006 -0700
+++ b/en/examples/run-example	Tue Oct 03 13:03:42 2006 -0700
@@ -129,6 +129,7 @@
         rcfile = os.path.join(tmpdir, '.bashrc')
         rcfp = open(rcfile, 'w')
         print >> rcfp, 'PS1="%s"' % self.prompt
+        print >> rcfp, 'PS2="%s"' % self.prompt
         print >> rcfp, 'unset HISTFILE'
         print >> rcfp, 'export EXAMPLE_DIR="%s"' % os.getcwd()
         print >> rcfp, 'export LANG=C'