diff options
author | franck cuny <franck.cuny@rtgi.fr> | 2009-03-12 21:50:35 +0100 |
---|---|---|
committer | franck cuny <franck.cuny@rtgi.fr> | 2009-03-12 21:50:35 +0100 |
commit | 24d18cda78bc76f51a6e07e9d2e643c0004362ca (patch) | |
tree | 2a4b5cdb2381dc80dfa2dd66165fe37d2eebccd8 | |
parent | backend methods are always called in list context and :UnicodeSafe is not nec... (diff) | |
download | kiokudb-backend-memcachedb-24d18cda78bc76f51a6e07e9d2e643c0004362ca.tar.gz |
fix stupid typo
-rw-r--r-- | lib/KiokuDB/Backend/Memcachedb.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/KiokuDB/Backend/Memcachedb.pm b/lib/KiokuDB/Backend/Memcachedb.pm index 5502d29..1341c79 100644 --- a/lib/KiokuDB/Backend/Memcachedb.pm +++ b/lib/KiokuDB/Backend/Memcachedb.pm @@ -56,7 +56,7 @@ sub get { my $db = $self->db; my @objs = map { $self->deserialize( $db->get( $_ ) ) } @ids; - @jobs; + @objs; } sub commit_entries { |