Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-François Paris <jfparis@rouge.eu.org>2021-02-26 11:17:17 +0300
committerJean-François Paris <jfparis@rouge.eu.org>2021-02-26 11:17:17 +0300
commit60c8a27cea6d6446e9d4bb85a3a226e13a4f8474 (patch)
tree36d3b918de775c13bcd91465248ed1ed0156e632 /Tools/Verification
parent6a74e3aa07e549fe8722065e153d78839ccc398e (diff)
Fixed some typos in the help message
Diffstat (limited to 'Tools/Verification')
-rw-r--r--Tools/Verification/DuplicatiVerify.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Tools/Verification/DuplicatiVerify.py b/Tools/Verification/DuplicatiVerify.py
index e32a12ecd..25397a852 100644
--- a/Tools/Verification/DuplicatiVerify.py
+++ b/Tools/Verification/DuplicatiVerify.py
@@ -25,8 +25,6 @@ def bytes_from_file(filename, chunksize=8192*1024):
while True:
chunk = f.read(chunksize)
if chunk:
- #for b in chunk:
- # yield b
yield chunk
else:
break
@@ -79,7 +77,7 @@ if __name__ == "__main__":
parser = argparse.ArgumentParser(description='Verify hashes of backup files.')
parser.add_argument("--quiet", action='store_true', help="Be noisy about each file being verified")
parser.add_argument("path", type=str, nargs='?',
- help="""path to the verification fole or folder containing the verification folder.\
+ help="""path to the verification file or folder containing the verification file.\
Defaulf is curent path""")
args = parser.parse_args()