We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e19bdc commit cd7d273Copy full SHA for cd7d273
mantidimaging/gui/windows/live_viewer/model.py
@@ -55,6 +55,11 @@ def image_modified_time(self) -> float:
55
"""Return the image modified time"""
56
return self._stat.st_mtime
57
58
+ @property
59
+ def image_modified_time_stamp(self) -> str:
60
+ """Return the image modified time as a string"""
61
+ return time.strftime("%Y-%m-%d %H:%M:%S", time.localtime(self.image_modified_time))
62
+
63
64
class SubDirectory:
65
0 commit comments