diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-08-14 14:44:30 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-08-14 14:44:30 -0400 |
commit | 5d83e7359d8a450c7e08405640c10157ba481fcc (patch) | |
tree | 40fadc7bd8882b376e64146a7c812838025c2697 /IkiWiki | |
parent | 15424d405b8736fa2568c12f7cfca94f34dcf07a (diff) |
graphviz: Fix breakage of the name of the preprocessor directive.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/graphviz.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/graphviz.pm b/IkiWiki/Plugin/graphviz.pm index 999edd8ee..20b419413 100644 --- a/IkiWiki/Plugin/graphviz.pm +++ b/IkiWiki/Plugin/graphviz.pm @@ -10,7 +10,7 @@ use IPC::Open2; sub import { #{{{ hook(type => "getsetup", id => "graphviz", call => \&getsetup); - hook(type => "preprocess", id => "graphviz", call => \&graph); + hook(type => "preprocess", id => "graph", call => \&graph); } # }}} sub getsetup () { #{{{ |