Launchpad automatic translations update.
[odoo/odoo.git] / addons / account / res_currency.py
old mode 100755 (executable)
new mode 100644 (file)
index 6ec404e..8c9c6a8
@@ -21,6 +21,7 @@
 from osv import osv
 
 """Inherit res.currency to handle accounting date values when converting currencies"""
+
 class res_currency_account(osv.osv):
     _inherit = "res.currency"
 
@@ -41,4 +42,6 @@ class res_currency_account(osv.osv):
                 rate = float(tot2)/float(tot1)
         return rate
 
-res_currency_account()
\ No newline at end of file
+res_currency_account()
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
\ No newline at end of file