Index: lib/Parrot/Manifest.pm
===================================================================
--- lib/Parrot/Manifest.pm	(revision 21929)
+++ lib/Parrot/Manifest.pm	(working copy)
@@ -27,7 +27,12 @@ sub new {
     # grab the versioned resources:
     my @versioned_files  = ();
     my @dirs             = ();
-    my @versioned_output = grep !/^[?D]/, @{$status_output_ref};
+    
+    # skip items scheduled for deletion, unknown items, empty line and
+    # 'Performing status on external item' line
+    # see the following link for detailed description of 'svn status' output
+    # http://linfoline.homedns.org/svn-book-html-chunk/svn.ref.svn.c.status.html
+    my @versioned_output = grep /^[XMAC! ]/, @{$status_output_ref};
     for my $line (@versioned_output) {
         my @line_info = split( /\s+/, $line );
 
