Fix syntax error
authorTollef Fog Heen <tfheen@err.no>
Sun, 15 May 2016 08:01:39 +0000 (10:01 +0200)
committerTollef Fog Heen <tfheen@err.no>
Sun, 15 May 2016 08:01:39 +0000 (10:01 +0200)
modules/porterbox/files/mail-big-homedirs

index b4c3663..cbf49b0 100755 (executable)
@@ -124,7 +124,7 @@ class LastlogTimes(dict):
   def __init__(self):
     record_size_32 = struct.calcsize(self.LASTLOG_STRUCT_32)
     record_size_64 = struct.calcsize(self.LASTLOG_STRUCT_64)
-    if sysconfig.get_config_var('SIZEOF_TIME_T') == 4
+    if sysconfig.get_config_var('SIZEOF_TIME_T') == 4:
         self.LASTLOG_STRUCT = self.LASTLOG_STRUCT_32
         record_size = record_size_32
     elif sysconfig.get_config_var('SIZEOF_TIME_T') == 8: