##// END OF EJS Templates
Merge pull request #13820 from jasongrout/mypy...
Jason Grout -
r27873:e783ccd7 merge
parent child Browse files
Show More
@@ -297,7 +297,10 b' Currently the magic system has the following functions:""",'
297 297 oname = args and args or '_'
298 298 info = self.shell._ofind(oname)
299 299 if info['found']:
300 txt = (raw and str or pformat)( info['obj'] )
300 if raw:
301 txt = str(info["obj"])
302 else:
303 txt = pformat(info["obj"])
301 304 page.page(txt)
302 305 else:
303 306 print('Object `%s` not found' % oname)
General Comments 0
You need to be logged in to leave comments. Login now