summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.python/py-pp-integral.py
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/testsuite/gdb.python/py-pp-integral.py')
-rw-r--r--gdb/testsuite/gdb.python/py-pp-integral.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.python/py-pp-integral.py b/gdb/testsuite/gdb.python/py-pp-integral.py
index dd6ea8effd3..fddef703bfb 100644
--- a/gdb/testsuite/gdb.python/py-pp-integral.py
+++ b/gdb/testsuite/gdb.python/py-pp-integral.py
@@ -27,7 +27,7 @@ class TimePrinter:
def time_sniffer(val):
- if hasattr(val.type, 'name') and val.type.name == "time_t":
+ if hasattr(val.type, "name") and val.type.name == "time_t":
return TimePrinter(val)
return None