Whamcloud - gitweb
LU-15515 contrib: epython scripts to python3 conversion
[fs/lustre-release.git] / contrib / debug_tools / epython_scripts / jiffies2date.py
index 152c00f..2604ee2 100644 (file)
@@ -25,7 +25,7 @@ def jiffies2date(jts):
 
     stime = scur - soffset
     date = time.asctime(time.localtime(stime))
-    print '%s (epoch: %d)' % (date, stime)
+    print('%s (epoch: %d)' % (date, stime))
 
 if __name__ == "__main__":
     description = "Print the date and time of a given jiffies timestamp. " + \