Index: /trunk/tools/czartool/Pantasks.pm
===================================================================
--- /trunk/tools/czartool/Pantasks.pm	(revision 30369)
+++ /trunk/tools/czartool/Pantasks.pm	(revision 30370)
@@ -120,5 +120,10 @@
         chomp($line);
         if (!$self->outputOk($line)) {return \@labels;}
-        if ($line =~ m/pantasks:\s+/) {$passedHeader=1; next;}
+
+        # sometimes a label can be on the same line as the panstasks prompt
+        if ($line =~ m/pantasks: (.*)/) {
+            if (length($1) > 0) {push(@labels, $1);}
+            $passedHeader=1; next;
+        }
         if ($passedHeader) {push(@labels, $line);}
     }
