From f7452fd697ab1e353d70212f7b2c15f10f97359f Mon Sep 17 00:00:00 2001 From: Bas Couwenberg Date: Thu, 2 May 2019 10:22:11 +0200 Subject: [PATCH] flake8: E111 indentation is not a multiple of four. --- data/scripts/migrator/dbsmerge_mongo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/scripts/migrator/dbsmerge_mongo.py b/data/scripts/migrator/dbsmerge_mongo.py index 758b3a4e7..7d983a0c1 100755 --- a/data/scripts/migrator/dbsmerge_mongo.py +++ b/data/scripts/migrator/dbsmerge_mongo.py @@ -41,7 +41,7 @@ if from_host == to_host and from_port == to_port: print('Migrating on same server...') mongo_from_url = 'mongodb://' + from_user + ':' + quote_plus(from_pass) + '@' + from_host + ':' + from_port + '/' + from_auth_db if from_pass == '': # disabled auth - mongo_from_url = 'mongodb://' + from_host + ':' + from_port + '/' + from_db + mongo_from_url = 'mongodb://' + from_host + ':' + from_port + '/' + from_db client = MongoClient(mongo_from_url) db = client[from_db]