removed unnecessary imports
diff --git a/website/product.py b/website/product.py
index 1c0d6d9..fd471cb 100644
--- a/website/product.py
+++ b/website/product.py
@@ -12,7 +12,7 @@
 		}
 	"""
 	import webnotes
-	from webnotes.utils import cstr, cint
+	from webnotes.utils import cstr
 	
 	if not args: args = webnotes.form_dict
 	
diff --git a/website/utils.py b/website/utils.py
index 5393a3d..dae998d 100644
--- a/website/utils.py
+++ b/website/utils.py
@@ -16,7 +16,6 @@
 
 from __future__ import unicode_literals
 import webnotes
-from webnotes.model.doc import Document
 
 def scrub_page_name(page_name):
 	if page_name.endswith('.html'):