diff options
-rw-r--r-- | lldb/examples/summaries/cocoa/NSDate.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/examples/summaries/cocoa/NSDate.py b/lldb/examples/summaries/cocoa/NSDate.py index 0e7038b488d..800cf3200e2 100644 --- a/lldb/examples/summaries/cocoa/NSDate.py +++ b/lldb/examples/summaries/cocoa/NSDate.py @@ -68,7 +68,6 @@ class NSTaggedDate_SummaryProvider: # unfortunately, it is made as a time-delta after Jan 1 2001 midnight GMT # while all Python knows about is the "epoch", which is a platform-dependent # year (1970 of *nix) whose Jan 1 at midnight is taken as reference - print hex(self.data) value_double = struct.unpack('d', struct.pack('Q', self.data))[0] return time.ctime(osx_to_python_time(value_double)) |