Subversion Repositories SmartDukaan

Rev

Rev 9503 | Rev 9640 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9503 Rev 9504
Line 833... Line 833...
833
            close_session()
833
            close_session()
834
            
834
            
835
    def getSnapdealInventorySnapshot(self):
835
    def getSnapdealInventorySnapshot(self):
836
        allsnapdealinventorysnapshot = []
836
        allsnapdealinventorysnapshot = []
837
        try:     
837
        try:     
838
            allsnapdealinventorysnapshot = get_snapdeal_inventory_snapshot()
-
 
839
            for inventorysnapshot in allsnapdealinventorysnapshot:
838
            for inventorysnapshot in get_snapdeal_inventory_snapshot():
840
                to_t_snapdeal_inventory_snapshot(inventorysnapshot)  
839
                allsnapdealinventorysnapshot.append(to_t_snapdeal_inventory_snapshot(inventorysnapshot))  
841
            return get_snapdeal_inventory_snapshot()
840
            return allsnapdealinventorysnapshot
842
        finally:            
841
        finally:            
843
            close_session()
842
            close_session()
844
                    
843
                    
845
844