From 01e4b2c6b6204361208332af0ed8622bb6da9691 Mon Sep 17 00:00:00 2001 From: sbalineni Date: Thu, 27 Aug 2015 12:35:46 -0700 Subject: [PATCH] DM: Fix for double-commit merge error. While porting this fix from R2.20 to master, this problem got introduced. Fixed. Change-Id: I99d8a87dc4557b2f0fea48e4a1f20fcd816cf7ec Closes-Bug: #1465070 --- src/config/device-manager/device_manager/db.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/config/device-manager/device_manager/db.py b/src/config/device-manager/device_manager/db.py index 8136b3cf487..2ef5fa7fd20 100644 --- a/src/config/device-manager/device_manager/db.py +++ b/src/config/device-manager/device_manager/db.py @@ -297,6 +297,7 @@ def get_vn_li_map(self): vn_dict[vn_id].append(li.name) else: vn_dict[vn_id] = [li.name] + return vn_dict #end def push_config(self):