summaryrefslogtreecommitdiff
path: root/lib/sbin/ScheduleParser.pl
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-07-12 12:07:44 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2003-07-12 12:07:44 +0000
commit02b772668ef863a1820489a21f89ffbe464ffab7 (patch)
treec0123f632b6d9bc020cb2ebf93bcb40227c0e556 /lib/sbin/ScheduleParser.pl
parent40253817b4b7abc015976f4c2898dd8b53833519 (diff)
Removed all the arrangement names from error messages because arrangement is
not defined and the order is wrong anyway (?). git-svn-id: http://svn.cactuscode.org/flesh/trunk@3271 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/sbin/ScheduleParser.pl')
-rw-r--r--lib/sbin/ScheduleParser.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sbin/ScheduleParser.pl b/lib/sbin/ScheduleParser.pl
index 16110b6b..0cde5a07 100644
--- a/lib/sbin/ScheduleParser.pl
+++ b/lib/sbin/ScheduleParser.pl
@@ -232,7 +232,7 @@ sub ParseScheduleBlock
if ($where !~ m:CCTK_(STARTUP|PARAMCHECK|BASEGRID|INITIAL|POSTINITIAL|RECOVER_VARIABLES|POST_RECOVER_VARIABLES|RECOVER_PARAMETERS|CHECKPOINT|CPINITIAL|PRESTEP|EVOL|POSTSTEP|ANALYSIS|TERMINATE|SHUTDOWN):)
{
&CST_error(0,"Schedule bin \'$where\' not recognised in schedule.ccl " .
- "file of thorn $arrangement/$thorn","",__LINE__,__FILE__);
+ "file of thorn $thorn","",__LINE__,__FILE__);
}
$field+=2;
}
@@ -427,7 +427,7 @@ sub ParseScheduleBlock
else
{
$data[$line_number] =~ /^(.*)\n+/;
- &CST_error(0,"Unrecognised statement in schedule block ($name) in schedule.ccl for thorn $thorn/$arrangement\n\"$1\"","",__LINE__,__FILE__);
+ &CST_error(0,"Unrecognised statement in schedule block ($name) in schedule.ccl for thorn $thorn\n\"$1\"","",__LINE__,__FILE__);
}
}
}
@@ -437,7 +437,7 @@ sub ParseScheduleBlock
}
else
{
- $message = "Missing desciption at end of schedule block ($name) in schedule.ccl for thorn $thorn/$arrangement";
+ $message = "Missing desciption at end of schedule block ($name) in schedule.ccl for thorn $thorn";
&CST_error(0,$message,"",__LINE__,__FILE__);
}