]> gitweb.pimeys.fr Git - today.git/commitdiff
Dehardcoding du path vers dtc.py
authorVincent Le Gallic <legallic@crans.org>
Fri, 14 Feb 2014 19:53:16 +0000 (20:53 +0100)
committerVincent Le Gallic <legallic@crans.org>
Fri, 14 Feb 2014 19:53:16 +0000 (20:53 +0100)
lastdtc.py
serverconfig.py

index 3eab303f2761f9fffc103c49410cceab0c9d248a..0ae7d304a0c3c4d4a656cb8a477ac067ff71bd4c 100644 (file)
@@ -1,9 +1,12 @@
 #!/usr/bin/env python
 # -*- encoding: utf-8 -*-
 
+""" Module bidon pour rediriger vers la bonne fonction du module DTC """
+
 import sys
 
-sys.path.insert(0, "/home/vincent/scripts/dtc/")
+import serverconfig
+sys.path.insert(0, serverconfig.dtc_path)
 import dtc
 
 functions = {"dtc" : dtc.last_inserted}
index 518ad86eb9b2cc38b7d80b99cc27ab948d7d4a6b..d066764c6f35d8cfd40bfe132334cd750133c631 100644 (file)
@@ -12,3 +12,6 @@ DEBUG = False
 
 #: La liste des chaînes Youtube à surveiller
 youtube_channels_file = "youtube_channels"
+
+#: Path du directory du module de gestion des quotes DTC
+dtc_path = "/home/vincent/scripts/dtc/"