[svk-commit] r2569 - branches/bm/lib/SVK/Command

nobody at bestpractical.com nobody at bestpractical.com
Fri Oct 26 05:44:08 EDT 2007


Author: clsung
Date: Fri Oct 26 05:43:55 2007
New Revision: 2569

Modified:
   branches/bm/lib/SVK/Command/Branch.pm

Log:
- $#arg < 1

Modified: branches/bm/lib/SVK/Command/Branch.pm
==============================================================================
--- branches/bm/lib/SVK/Command/Branch.pm	(original)
+++ branches/bm/lib/SVK/Command/Branch.pm	Fri Oct 26 05:43:55 2007
@@ -177,7 +177,7 @@
 
 sub parse_arg {
     my ($self, @arg) = @_;
-    return if $#arg < 0;
+    return if $#arg < 1;
 
     my $dst = pop(@arg);
     die loc ("Copy destination can't be URI.\n")


More information about the svk-commit mailing list