fix 1273: freezing aiokafka version to 0.6.0
minor typo at dbmongo
Change-Id: Iaba9dc9e8f0ff50dfad7d223a3c3ee2d71d44a47
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/osm_common/dbmongo.py b/osm_common/dbmongo.py
index b0686aa..3de900b 100644
--- a/osm_common/dbmongo.py
+++ b/osm_common/dbmongo.py
@@ -157,7 +157,7 @@
# B or C
A.cont=B&A.cont=C; A.cont=B,C >> A: {$in: [B, C]}
A.ncont=B >> A: {$nin: B} # must not contain key A or if present not equal to B or if a list,
- # it must not not contain B
+ # it must not contain B
A.ncont=B,C; A.ncont=B&A.ncont=C >> A: {$nin: [B,C]} # must not contain key A or if present not equal
# neither B nor C; or if a list, it must not contain neither B nor C
A.ne=B&A.ne=C; A.ne=B,C >> A: {$nin: [B, C]}