From 2db63e9bd7bff7ef7bcc85912070d055ec24219f Mon Sep 17 00:00:00 2001 From: Guillaume Raffy Date: Thu, 27 Jun 2024 10:39:17 +0200 Subject: [PATCH] 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] --- home/bin/ticman | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/bin/ticman b/home/bin/ticman index a695c5f..154bbd6 100755 --- a/home/bin/ticman +++ b/home/bin/ticman @@ -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)')