diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-01-07 18:12:12 -0500 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-01-07 18:12:12 -0500 |
commit | e35eb5a4184c9140e01422d0cb70c39cc1a8b969 (patch) | |
tree | ab8db32a10b57f0a54a1aa1748c57b8ab1148035 /IkiWiki | |
parent | 08cb5f7badff3fdb103cf84890b19b90c0600a4e (diff) | |
download | ikiwiki-e35eb5a4184c9140e01422d0cb70c39cc1a8b969.tar ikiwiki-e35eb5a4184c9140e01422d0cb70c39cc1a8b969.tar.gz |
* Add a prereq on Data::Dumper 2.11 or better, needed to dump q// objects.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Wrapper.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Wrapper.pm b/IkiWiki/Wrapper.pm index 16e5bd350..2103ea53a 100644 --- a/IkiWiki/Wrapper.pm +++ b/IkiWiki/Wrapper.pm @@ -3,7 +3,7 @@ use warnings; use strict; use Cwd q{abs_path}; -use Data::Dumper; +use Data::Dumper ; use IkiWiki; package IkiWiki; |