From ea17a5ebc0448e912fb59e03a6d3052a6159edfc Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Sat, 20 Feb 2010 22:02:21 +0100 Subject: fix bustage in 012throwables.t --- Bugzilla/Update.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Update.pm') diff --git a/Bugzilla/Update.pm b/Bugzilla/Update.pm index 489756406..a94fd167d 100644 --- a/Bugzilla/Update.pm +++ b/Bugzilla/Update.pm @@ -36,7 +36,7 @@ sub get_notifications { if (!-e $local_file || (time() - (stat($local_file))[9] > TIME_INTERVAL)) { unlink $local_file; # Make sure the old copy is away. if (-e $local_file) { - return { error => 'no_update', xml_file => $local_file }; + return { 'error' => 'no_update', xml_file => $local_file }; } my $error = _synchronize_data(); # If an error is returned, leave now. -- cgit v1.2.3-24-g4f1b