diff --git a/__pycache__/book.cpython-32.pyc b/__pycache__/book.cpython-32.pyc index cb49206..7eb377b 100644 Binary files a/__pycache__/book.cpython-32.pyc and b/__pycache__/book.cpython-32.pyc differ diff --git a/__pycache__/config.cpython-32.pyc b/__pycache__/config.cpython-32.pyc index 44df5e3..812ebb9 100644 Binary files a/__pycache__/config.cpython-32.pyc and b/__pycache__/config.cpython-32.pyc differ diff --git a/__pycache__/dev.cpython-32.pyc b/__pycache__/dev.cpython-32.pyc index b9b2ebf..3c83f83 100644 Binary files a/__pycache__/dev.cpython-32.pyc and b/__pycache__/dev.cpython-32.pyc differ diff --git a/__pycache__/divers.cpython-32.pyc b/__pycache__/divers.cpython-32.pyc index 8f28ec1..ecb9bd9 100644 Binary files a/__pycache__/divers.cpython-32.pyc and b/__pycache__/divers.cpython-32.pyc differ diff --git a/__pycache__/lecon.cpython-32.pyc b/__pycache__/lecon.cpython-32.pyc index d5d0d26..aef378f 100644 Binary files a/__pycache__/lecon.cpython-32.pyc and b/__pycache__/lecon.cpython-32.pyc differ diff --git a/config.py b/config.py index e337ff6..e71ad2d 100644 --- a/config.py +++ b/config.py @@ -1,5 +1,5 @@ # Fichier configuration -lieu_dev = "../developpements/" -lieu_lecon = "../lecons/" -lieu_bouquin = "../bouquins/" +lieu_dev = "developpements/" +lieu_lecon = "lecons/" +lieu_bouquin = "bouquins/" diff --git a/install.sh b/install.sh index 6b9bd22..23839d6 100644 --- a/install.sh +++ b/install.sh @@ -1,10 +1,10 @@ #!/bin/bash echo "Création du répertoire des développements" -mkdir ../developpements +mkdir developpements echo "Création du répertoire des lecons" -mkdir ../lecons +mkdir lecons echo "Création du répertoire des bouquins" -mkdir ../bouquins +mkdir bouquins echo "Voila tout est bon (j'espere!)"