public inbox for archer@sourceware.org
 help / color / mirror / Atom feed
* [python] fix typo in command.py
@ 2009-07-01 15:55 Tom Tromey
  0 siblings, 0 replies; only message in thread
From: Tom Tromey @ 2009-07-01 15:55 UTC (permalink / raw)
  To: Project Archer

Taras pointed out that command.py was missing a paren.

Tom

diff --git a/gdb/python/lib/gdb/command/backtrace.py b/gdb/python/lib/gdb/command/backtrace.py
index 689b94b..c49fd55 100644
--- a/gdb/python/lib/gdb/command/backtrace.py
+++ b/gdb/python/lib/gdb/command/backtrace.py
@@ -174,7 +174,7 @@ Use of the 'raw' qualifier avoids any filtering by loadable modules.
         # However, should still number as if starting from newest
 	newest_frame = gdb.selected_thread ().newest_frame ()
         iter = itertools.imap (FrameWrapper,
-                               FrameIterator (newest_frame)
+                               FrameIterator (newest_frame))
         if filter:
             iter = gdb.backtrace.create_frame_filter (iter)
 

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-07-01 15:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-07-01 15:55 [python] fix typo in command.py Tom Tromey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).