##// END OF EJS Templates
correct minotr glitch in ipipe.FieldTable ctor
vivainio -
Show More
@@ -15,7 +15,7 b' This gives a listing of all environment variables sorted by name.'
15
15
16 There are three types of objects in a pipeline expression:
16 There are three types of objects in a pipeline expression:
17
17
18 * ``Table``s: These objects produce items. Examples are `ls`` (listing the
18 * ``Table``s: These objects produce items. Examples are ``ls`` (listing the
19 current directory, ``ienv`` (listing environment variables), ``ipwd`` (listing
19 current directory, ``ienv`` (listing environment variables), ``ipwd`` (listing
20 user account) and ``igrp`` (listing user groups). A ``Table`` must be the
20 user account) and ``igrp`` (listing user groups). A ``Table`` must be the
21 first object in a pipe expression.
21 first object in a pipe expression.
@@ -29,7 +29,7 b' There are three types of objects in a pipeline expression:'
29 * ``Display``s: These objects can be put as the last object in a pipeline
29 * ``Display``s: These objects can be put as the last object in a pipeline
30 expression. There are responsible for displaying the result of the pipeline
30 expression. There are responsible for displaying the result of the pipeline
31 expression. If a pipeline expression doesn't end in a display object a default
31 expression. If a pipeline expression doesn't end in a display object a default
32 display objects will be used. One example is `browse`` which is a ``curses``
32 display objects will be used. One example is ``browse`` which is a ``curses``
33 based browser.
33 based browser.
34
34
35
35
@@ -912,7 +912,7 b' class Fields(object):'
912
912
913 class FieldTable(Table, list):
913 class FieldTable(Table, list):
914 def __init__(self, *fields):
914 def __init__(self, *fields):
915 ipipe.Table.__init__(self)
915 Table.__init__(self)
916 list.__init__(self)
916 list.__init__(self)
917 self.fields = fields
917 self.fields = fields
918
918
General Comments 0
You need to be logged in to leave comments. Login now