From 977a8ad47c8c36b3f78cd76787a831c322134268 Mon Sep 17 00:00:00 2001 From: Hugh L Taylor Date: Fri, 7 Jul 1995 19:42:51 +0000 Subject: [PATCH] Typo in output. --- contrib/view_steps.pl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/contrib/view_steps.pl b/contrib/view_steps.pl index 7b9e8279df..c06894325c 100755 --- a/contrib/view_steps.pl +++ b/contrib/view_steps.pl @@ -5,6 +5,9 @@ # # Wed May 3 1995 # $Log: not supported by cvs2svn $ +#Revision 1.3 1995/07/07 19:41:44 pg511 +#typo +# #Revision 1.2 1995/07/07 19:32:44 pg511 #Works for SCF and DFT. # @@ -41,13 +44,13 @@ if ( /^\s*No\. of atoms\s*:\s*(\d+)/ ) { # found DFT # of atoms $natoms = $1; - print "DFT Calculation Output \$natoms: $natoms\n"; + print "DFT Calculation Output natoms: $natoms\n"; last; } if ( /^\s*atoms\s*=\s*(\d+)/ ) { # found SCF # of atoms $natoms = $1; - print "DFT Calculation Output \$natoms: $natoms\n"; + print "SCF Calculation Output natoms: $natoms\n"; last; } }