summaryrefslogtreecommitdiff
path: root/tools/gdb/python/watchdog.py
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-11-12 11:15:23 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-11-12 11:15:23 +0100
commit04a52040aef69910e9ac2218fea48077e34d4017 (patch)
treed7b623bc23ddc2765812cf406e567b4ee7c3e848 /tools/gdb/python/watchdog.py
parentab922fec9c2ce403d870120b5afcc108f06f4aea (diff)
Python 3 compatibility
Diffstat (limited to '')
-rw-r--r--tools/gdb/python/watchdog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gdb/python/watchdog.py b/tools/gdb/python/watchdog.py
index dfa57a0..6a80421 100644
--- a/tools/gdb/python/watchdog.py
+++ b/tools/gdb/python/watchdog.py
@@ -89,4 +89,4 @@ class control:
return val
def show(self):
- print self.to_string()
+ print(self.to_string())