fixes in budget control
diff --git a/accounts/doctype/budget_control/budget_control.py b/accounts/doctype/budget_control/budget_control.py
index dcab3ac..a3e1740 100644
--- a/accounts/doctype/budget_control/budget_control.py
+++ b/accounts/doctype/budget_control/budget_control.py
@@ -95,7 +95,7 @@
 		# used in General Ledger Page Report
 		# used for Budget where cost center passed as extra argument
 		acc, f, t = arg.split('~~~')
-		c, fy = '', get_defaults()['fiscal_year']
+		c, fy = '', webnotes.conn.get_defaults()['fiscal_year']
 
 		det = webnotes.conn.sql("select debit_or_credit, lft, rgt, is_pl_account from tabAccount where name=%s", acc)
 		if f: c += (' and t1.posting_date >= "%s"' % f)