[Zope3-checkins] CVS: Zope3/src/zope/fssync - main.py:1.9
   
    Guido van Rossum
     
    guido@python.org
       
    Tue, 13 May 2003 17:45:54 -0400
    
    
  
Update of /cvs-repository/Zope3/src/zope/fssync
In directory cvs.zope.org:/tmp/cvs-serv21373
Modified Files:
	main.py 
Log Message:
The checkout errors were mistakenly mentioning the commit command. :-(
=== Zope3/src/zope/fssync/main.py 1.8 => 1.9 ===
--- Zope3/src/zope/fssync/main.py:1.8	Tue May 13 17:16:22 2003
+++ Zope3/src/zope/fssync/main.py	Tue May 13 17:45:53 2003
@@ -123,12 +123,12 @@
 
 def checkout(opts, args):
     if not args:
-        raise Usage("commit requires a URL argument")
+        raise Usage("checkout requires a URL argument")
     rooturl = args[0]
     if len(args) > 1:
         target = args[0]
         if len(args) > 2:
-            raise Usage("commit requires at most one TARGETDIR argument")
+            raise Usage("checkout requires at most one TARGETDIR argument")
     else:
         target = os.curdir
     fs = FSSync(rooturl=rooturl)