Show
Ignore:
Timestamp:
08/07/07 16:38:49 (5 years ago)
Author:
trivoallan
Message:

cleverbox : Fixed "Iteration over a non-sequence" bug

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • cleverbox/trunk/cleverbox/scripts/admin.py

    r131 r133  
    202202            try: 
    203203                doc = getattr(self, "_help_" + arg[0]) 
    204                 TracAdmin.print_doc(TracAdmin(), doc) 
     204                TracAdmin.print_doc(doc) 
    205205            except AttributeError: 
    206206                print "No documentation found for %s" % arg[0] 
     
    213213                print "Invoking cleverbox-admin without command starts "\ 
    214214                      "interactive mode." 
    215             TracAdmin.print_doc(TracAdmin(), docs) 
     215            TracAdmin.print_doc(docs) 
    216216 
    217217