aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2011-12-06 17:38:53 +0000
committerTom Tromey <tromey@redhat.com>2011-12-06 17:38:53 +0000
commit75c8c9d72cb6cdf4ccbaa5082bd7037afaf0fe8e (patch)
tree8f04513c1fa08357a58eaa79f50e23ccee97258c /gdb
parent7376e45089f069986d7ae57c8183d84a7e6aa611 (diff)
downloadgdb-75c8c9d72cb6cdf4ccbaa5082bd7037afaf0fe8e.zip
gdb-75c8c9d72cb6cdf4ccbaa5082bd7037afaf0fe8e.tar.gz
gdb-75c8c9d72cb6cdf4ccbaa5082bd7037afaf0fe8e.tar.bz2
* python/lib/gdb/command/pretty_printers.py
(InfoPrettyPrinter.invoke1): Remove extra double quote.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/ChangeLog5
-rw-r--r--gdb/python/lib/gdb/command/pretty_printers.py2
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index de040a1..1183909 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
2011-12-06 Tom Tromey <tromey@redhat.com>
+ * python/lib/gdb/command/pretty_printers.py
+ (InfoPrettyPrinter.invoke1): Remove extra double quote.
+
+2011-12-06 Tom Tromey <tromey@redhat.com>
+
* NEWS: Add MI news.
2011-12-06 Ulrich Weigand <uweigand@de.ibm.com>
diff --git a/gdb/python/lib/gdb/command/pretty_printers.py b/gdb/python/lib/gdb/command/pretty_printers.py
index 00aa390..98d0665 100644
--- a/gdb/python/lib/gdb/command/pretty_printers.py
+++ b/gdb/python/lib/gdb/command/pretty_printers.py
@@ -148,7 +148,7 @@ class InfoPrettyPrinter(gdb.Command):
def invoke1(self, title, printer_list,
obj_name_to_match, object_re, name_re, subname_re):
- """"Subroutine of invoke to simplify it."""
+ """Subroutine of invoke to simplify it."""
if printer_list and object_re.match(obj_name_to_match):
print title
self.list_pretty_printers(printer_list, name_re, subname_re)