gave a better self explaining name to the directory hosting the tickets details repository (to avoid a possible confusion with the tickets themselves)

fixes [https://bugzilla.ipr.univ-rennes.fr/show_bug.cgi?id=3882]
This commit is contained in:
Guillaume Raffy 2024-06-27 10:39:17 +02:00
parent ca9d7e4a47
commit 2db63e9bd7
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ def main():
# parser = argparse.ArgumentParser(description='ipr ticket manager - a tool to help centralizing ipr tickets details (additional files that are not appropriate as attachment to ticketing system)', formatter_class=argparse.RawDescriptionHelpFormatter)
parser = argparse.ArgumentParser(description=description, formatter_class=argparse.RawDescriptionHelpFormatter)
parser.add_argument('--workspace-dir', type=Path, default=Path('/home/graffy/work/tickets'), help='the local directory used as a workspace')
parser.add_argument('--repos-location', type=SshLocation, default='graffy@store.ipr.univ-rennes.fr:/mnt/store.ipr/InstallProgs/ipr/tickets', help='the tickets details repository location')
parser.add_argument('--repos-location', type=SshLocation, default='graffy@store.ipr.univ-rennes.fr:/mnt/store.ipr/InstallProgs/ipr/tickets-details', help='the tickets details repository location')
subparsers = parser.add_subparsers(dest='cmd', required=True, description='action to perform')
# parser.add_argument('--ticket-id', type=str, required=True, help='the identifier of the ticket on which the action is performed (eg bug3879)')