]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
command-line: remove some redundant options checking
authorZooko O'Whielacronx <zooko@zooko.com>
Fri, 17 Aug 2007 20:06:43 +0000 (13:06 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Fri, 17 Aug 2007 20:06:43 +0000 (13:06 -0700)
src/allmydata/scripts/tahoe_get.py
src/allmydata/scripts/tahoe_put.py

index efaa5d0c81e050c87ae8f9e07b828dc8d691ab50..66e98313994363ecfaf7f825f7aab0c10497740c 100644 (file)
@@ -3,9 +3,6 @@
 import sys, urllib
 
 def get(nodeurl, vdrive, vdrive_file, local_file):
-    if not isinstance(nodeurl, basestring):
-        raise ValueError("nodeurl is required to be a string and look like \"http://HOSTNAMEORADDR:PORT\", not: %r" % (nodeurl,))
-
     if nodeurl[-1] != "/":
         nodeurl += "/"
     url = nodeurl + "vdrive/" + vdrive + "/"
index 5475bde84fa83c0e705a196e9257fc8191b98e77..6a41974017994839bffb5c45fb85779a0518213c 100644 (file)
@@ -10,12 +10,7 @@ def put(nodeurl, vdrive, vdrive_fname, local_fname, verbosity):
 
     @return: a Deferred which eventually fires with the exit code
     """
-    if not isinstance(nodeurl, basestring):
-        raise ValueError("nodeurl is required to be a string and look like \"http://HOSTNAMEORADDR:PORT\", not: %r" % (nodeurl,))
-
     mo = NODEURL_RE.match(nodeurl)
-    if not mo:
-        raise ValueError("nodeurl is required to look like \"http://HOSTNAMEORADDR:PORT\", not: %r" % (nodeurl,))
     host = mo.group(1)
     port = int(mo.group(3))