This is the mail archive of the archer@sourceware.org mailing list for the Archer project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[python] fix typo in command.py


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)
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]