From 9018100a52f57701ba58cb5cac7eb5ad3de14b30 Mon Sep 17 00:00:00 2001 From: Yann Salmon Date: Fri, 22 Oct 2021 23:26:06 +0200 Subject: [PATCH] Update lien-source.py --- latex/lien-source.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/latex/lien-source.py b/latex/lien-source.py index c1848f5..a8b68ba 100755 --- a/latex/lien-source.py +++ b/latex/lien-source.py @@ -18,13 +18,13 @@ commit = subprocess.check_output(["git", "rev-parse", "HEAD"], cwd=scriptdir).de contenu = open(fichier).read() with open(destination, "w") as f : f.write("""%% Les fichiers nécessaires à la compilation sont disponibles sur SourceSup. - %% Version la plus récente : - %% https://sourcesup.renater.fr/scm/browser.php?group_id=5479&scm_plugin=scmgit - %% Version au moment de la publication du présent fichier : - %% https://sourcesup.renater.fr/scm/browser.php?group_id=5479&scm_plugin=scmgit&path=/anonscm/gitweb?p=typo-cpge/typo-cpge.git;a=tree;hb={} - %% Téléchargement direct : - %% https://git.renater.fr/anonscm/gitweb?p=typo-cpge/typo-cpge.git;a=snapshot;h={};sf=tgz - %% - """.format(commit,commit)) +%% Version la plus récente : +%% https://sourcesup.renater.fr/scm/browser.php?group_id=5479&scm_plugin=scmgit +%% Version au moment de la publication du présent fichier : +%% https://sourcesup.renater.fr/scm/browser.php?group_id=5479&scm_plugin=scmgit&path=/anonscm/gitweb?p=typo-cpge/typo-cpge.git;a=tree;hb={} +%% Téléchargement direct : +%% https://git.renater.fr/anonscm/gitweb?p=typo-cpge/typo-cpge.git;a=snapshot;h={};sf=tgz +%% +""".format(commit,commit)) f.write(contenu)