diff options
author | matthew <matthew> | 2008-02-01 00:21:51 +0000 |
---|---|---|
committer | matthew <matthew> | 2008-02-01 00:21:51 +0000 |
commit | 6cc6a73ccf422b338e3c580416aab35197b7ff55 (patch) | |
tree | a6680b1cbc926ab03a86fab293c872561c5a25fb | |
parent | edf64c419c682e7d7e7a9430561e5be0db9182cb (diff) |
Missing semicolon.
-rw-r--r-- | perllib/Page.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perllib/Page.pm b/perllib/Page.pm index 1d5b01521..c3f67f325 100644 --- a/perllib/Page.pm +++ b/perllib/Page.pm @@ -6,7 +6,7 @@ # Copyright (c) 2006 UK Citizens Online Democracy. All rights reserved. # Email: matthew@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: Page.pm,v 1.75 2008-02-01 00:19:29 matthew Exp $ +# $Id: Page.pm,v 1.76 2008-02-01 00:21:51 matthew Exp $ # package Page; @@ -40,7 +40,7 @@ my $handling_request = 0; $SIG{TERM} = $SIG{USR1} = sub { $exit_requested = 1; exit(0) unless $handling_request; -} +}; sub do_fastcgi { my $func = shift; |