PEP8: fix E265: block comment should start with '# '
[nivanova/samba-autobuild/.git] / python / samba / gp_sec_ext.py
index 40999758e0e4e215de3eaef2b9e9f42bb54a15fb..79c6abaea224f1d8e38b8b3508fdbfc97a4e43ea 100644 (file)
@@ -20,10 +20,10 @@ from samba.gpclass import gp_ext_setter, gp_inf_ext
 
 class inf_to_kdc_tdb(gp_ext_setter):
     def mins_to_hours(self):
-        return '%d' % (int(self.val)/60)
+        return '%d' % (int(self.val) / 60)
 
     def days_to_hours(self):
-        return '%d' % (int(self.val)*24)
+        return '%d' % (int(self.val) * 24)
 
     def set_kdc_tdb(self, val):
         old_val = self.gp_db.gpostore.get(self.attribute)