]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
upload.py: remove spurious trailing quotes that confuse syntax-highlighting
authorBrian Warner <warner@allmydata.com>
Mon, 24 Mar 2008 22:51:19 +0000 (15:51 -0700)
committerBrian Warner <warner@allmydata.com>
Mon, 24 Mar 2008 22:51:19 +0000 (15:51 -0700)
src/allmydata/upload.py

index 384aea2b021848b626728b58528ab06737cf6263..eed5ee7029fb7d79cf6a72df265664bdc8abf886 100644 (file)
@@ -1089,7 +1089,7 @@ class FileHandle(BaseUploadable):
         Upload the data from the filehandle.  If convergence is None then a
         random encryption key will be used, else the plaintext will be hashed,
         then the hash will be hashed together with the string in the
-        "convergence" argument to form the encryption key."
+        "convergence" argument to form the encryption key.
         """
         assert convergence is None or isinstance(convergence, str), (convergence, type(convergence))
         self._filehandle = filehandle
@@ -1165,7 +1165,7 @@ class FileName(FileHandle):
         Upload the data from the filename.  If convergence is None then a
         random encryption key will be used, else the plaintext will be hashed,
         then the hash will be hashed together with the string in the
-        "convergence" argument to form the encryption key."
+        "convergence" argument to form the encryption key.
         """
         assert convergence is None or isinstance(convergence, str), (convergence, type(convergence))
         FileHandle.__init__(self, open(filename, "rb"), convergence=convergence)
@@ -1179,7 +1179,7 @@ class Data(FileHandle):
         Upload the data from the data argument.  If convergence is None then a
         random encryption key will be used, else the plaintext will be hashed,
         then the hash will be hashed together with the string in the
-        "convergence" argument to form the encryption key."
+        "convergence" argument to form the encryption key.
         """
         assert convergence is None or isinstance(convergence, str), (convergence, type(convergence))
         FileHandle.__init__(self, StringIO(data), convergence=convergence)