Skip to content
This repository was archived by the owner on Feb 1, 2023. It is now read-only.

Commit 7c25dcc

Browse files
author
Jonathan Kliem
committed
fix tachyon interface error
1 parent 6a45805 commit 7c25dcc

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/sage/interfaces/tachyon.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ class TachyonRT(SageObject):
7474
7575
EXAMPLES:
7676
77-
77+
7878
.. automethod:: __call__
7979
"""
8080
def _repr_(self):
@@ -173,7 +173,12 @@ def usage(self, use_pager=True):
173173
sage: from sage.interfaces.tachyon import TachyonRT
174174
sage: t = TachyonRT()
175175
sage: t.usage(use_pager=False)
176-
Tachyon Parallel/Multiprocessor Ray Tracer Version...
176+
...
177+
Usage:
178+
tachyon modelfile [options]
179+
<BLANKLINE>
180+
Model file formats supported:
181+
filename.dat ...
177182
"""
178183
with os.popen('tachyon') as f:
179184
r = f.read()

0 commit comments

Comments
 (0)