fix in remove_archive
diff --git a/erpnext/patches/jan_mar_2012/remove_archive.py b/erpnext/patches/jan_mar_2012/remove_archive.py
index 9f685b6..dbc61d7 100644
--- a/erpnext/patches/jan_mar_2012/remove_archive.py
+++ b/erpnext/patches/jan_mar_2012/remove_archive.py
@@ -15,7 +15,7 @@
 			res = webnotes.conn.sql("SELECT name FROM `%s`" % tab)
 			for dn in res:
 				archive.archive_doc(dt, dn[0], restore=1)
-				count++
+				count += 1
 				if not count%100:
 					webnotes.conn.commit()
 					webnotes.conn.begin()