[Bps-public-commit] r10161 - in Net-Hiveminder: bin lib/Net
sartak at bestpractical.com
sartak at bestpractical.com
Thu Dec 27 14:00:21 EST 2007
Author: sartak
Date: Thu Dec 27 14:00:20 2007
New Revision: 10161
Modified:
Net-Hiveminder/ (props changed)
Net-Hiveminder/bin/hm
Net-Hiveminder/lib/Net/Hiveminder.pm
Log:
r45571 at onn: sartak | 2007-11-23 19:21:02 -0500
Fix undef warning and a misnamed method
Modified: Net-Hiveminder/bin/hm
==============================================================================
--- Net-Hiveminder/bin/hm (original)
+++ Net-Hiveminder/bin/hm Thu Dec 27 14:00:20 2007
@@ -101,7 +101,7 @@
$args{priority} &&= $hm->canonicalize_priority($args{priority});
# the ; is here so Perl interprets it as a codeblock and not a hashref
- @args = map { ; tag => $_ } split ' ', $args{tags};
+ @args = map { ; tag => $_ } split ' ', ($args{tags}||'');
for (qw/group priority due hide/) {
push @args, $_ => $args{$_}
Modified: Net-Hiveminder/lib/Net/Hiveminder.pm
==============================================================================
--- Net-Hiveminder/lib/Net/Hiveminder.pm (original)
+++ Net-Hiveminder/lib/Net/Hiveminder.pm Thu Dec 27 14:00:20 2007
@@ -265,7 +265,7 @@
return $self->upload_text($text);
}
-=head2 download_tasks
+=head2 download_text
Downloads your tasks. This also gets the metadata so that you can edit the text
and upload it, and it'll make the same changes to your task list.
More information about the Bps-public-commit
mailing list