Subversion Repositories SmartDukaan

Rev

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

Rev 12003 Rev 12004
Line 95... Line 95...
95
 
95
 
96
 
96
 
97
def main():
97
def main():
98
    for operator in listOperator:
98
    for operator in listOperator:
99
        for circle in listCircle:
99
        for circle in listCircle:
100
            print "Trying to fetch recharge plans for Operator = %s , Circle = %s, Recharge Type = %s" %(operator[0],circle[0])
100
            print "Trying to fetch recharge plans for Operator = %s , Circle = %s" %(operator[0],circle[0])
101
            print "\n"
101
            print "\n"
102
            fetch_plans(operator,circle)
102
            fetch_plans(operator,circle)
103
    
103
    
104
if __name__ == "__main__":
104
if __name__ == "__main__":
105
    main()
105
    main()
106
106