Stories
Slash Boxes
Comments

All the Perl that's Practical to Extract and Report

use Perl Log In

Log In

[ Create a new account ]

jplindstrom (594)

jplindstrom
  (email not shown publicly)

Journal of jplindstrom (594)

Thursday June 19, 2008
12:00 PM

D'oh of the Day

[ #36723 ]

So in the app at work, input is performed through what we call "an import".

Just now a strange error occured in the test that sanity checks that all modules compile.

Can't call method "request" on an undefined value

It appears I removed some duplication by extracting to a method called... "import".

D'oh.

See also:

perldoc -f use

The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
 Full
 Abbreviated
 Hidden
More | Login | Reply
Loading... please wait.
  • I started out the morning with debugging some test code in Komodo, I kept getting errors when using DBD::Mock, after biking from home to client location I just had a brief look (the debugging session was still active) - so I checked what version of DBD::Mock I had installed (1.34) and I noticed a newer version was available (1.37). I had a looked at the Changes file and there it was in 1.35 AutoCommit patch - I updated and it worked.

    After this I had a look at some cross-site scripting issues with FCKeditor,
  • This has bitten me before - I've written many modules which import data in some way. This is why programming languages should have as few reserved words as possible.