Skip to content

Commit 91ec9a0

Browse files
Whitespace cleanup
1 parent 750e033 commit 91ec9a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MongoBackup/Methods/Dumper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def wait(self):
6969
def run(self):
7070
# decide how many parallel dump workers to use based on cpu count vs # of shards (if 3.2+)
7171
self.threads_per_dump = 1
72-
if tuple(self.version.split(".")) >= tuple("3.2.0".split(".")):
72+
if tuple(self.version.split(".")) >= tuple("3.2.0".split(".")):
7373
self.threads_per_dump = 1
7474
if self.cpu_count > len(self.secondaries):
7575
self.threads_per_dump = int(floor(self.cpu_count / len(self.secondaries)))
@@ -100,7 +100,7 @@ def run(self):
100100

101101
# start all threads and wait
102102
logging.info(
103-
"Starting backups using mongodump %s (inline gzip: %s, threads per dump: %i)" % (self.version, str(self.dump_gzip), self.threads_per_dump))
103+
"Starting backups using mongodump %s (inline gzip: %s, threads per dump: %i)" % (self.version, str(self.dump_gzip), self.threads_per_dump))
104104
for thread in self.threads:
105105
thread.start()
106106
self.wait()

0 commit comments

Comments
 (0)