Commits
Darrell Schiebel authored caa0ea0a8bc
19 19 | # |
20 20 | # Correspondence concerning AIPS++ should be adressed as follows: |
21 21 | # Internet email: aips2-request@nrao.edu. |
22 22 | # Postal address: AIPS++ Project Office |
23 23 | # National Radio Astronomy Observatory |
24 24 | # 520 Edgemont Road |
25 25 | # Charlottesville, VA 22903-2475 USA |
26 26 | ########################################################################### |
27 27 | |
28 28 | """Start the CASAfeather graphic interface from the unix command line by |
29 - | executing the ``casatablebrowser`` package: |
29 + | executing the ``casafeather`` package: |
30 30 | |
31 - | Example: |
32 - | The table browser GUI can be launched with a table path:: |
31 + | Example:: |
33 32 | |
34 33 | $ python3 -m casafeather |
35 34 | |
36 35 | """ |
37 36 | |
38 37 | import sys |
39 38 | |
40 39 | |
41 40 | from .casafeather import casafeather |
42 41 | |
43 42 | casafeather(cleanup=False) |