Changeset cb351607 in trunk
- Timestamp:
- 2020-11-29T20:21:25Z (4 years ago)
- Branches:
- master
- Children:
- 6b772e7
- Parents:
- 6ea9003
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/allmydata/scripts/cli.py ¶
r6ea9003 rcb351607 2 2 3 3 import os.path, re, fnmatch 4 5 try: 6 from typing import List, Sequence, Any 7 except ImportError: 8 pass 9 4 10 from twisted.python import usage 5 11 from allmydata.scripts.common import get_aliases, get_default_nodedir, \ … … 20 26 ["dir-cap", None, None, 21 27 "Specify which dirnode URI should be used as the 'tahoe' alias."] 22 ] 28 ] # type: List[Sequence[Any]] 23 29 24 30 def postOptions(self):
Note: See TracChangeset
for help on using the changeset viewer.