summaryrefslogtreecommitdiff
path: root/src/config.py
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-08-05 02:04:52 +0200
committermathieui <mathieui@mathieui.net>2012-08-05 02:04:52 +0200
commitec5bb3b213385405105ef90eccb1b1f093004b22 (patch)
treedcb104a783792e4066c55953cfbde68de7ee434c /src/config.py
parentd723cec5ebac28497c14f24707bcc90d7541a0f1 (diff)
downloadpoezio-ec5bb3b213385405105ef90eccb1b1f093004b22.tar.gz
poezio-ec5bb3b213385405105ef90eccb1b1f093004b22.tar.bz2
poezio-ec5bb3b213385405105ef90eccb1b1f093004b22.tar.xz
poezio-ec5bb3b213385405105ef90eccb1b1f093004b22.zip
Use the revision/date for the poezio version if a .git is found
Diffstat (limited to 'src/config.py')
-rw-r--r--src/config.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/config.py b/src/config.py
index 85fa55f6..99a05118 100644
--- a/src/config.py
+++ b/src/config.py
@@ -15,7 +15,7 @@ DEFSECTION = "Poezio"
from configparser import RawConfigParser, NoOptionError, NoSectionError
from os import environ, makedirs, path
from shutil import copy2
-from argparse import ArgumentParser
+from argparse import ArgumentParser, SUPPRESS
class Config(RawConfigParser):
"""
@@ -197,6 +197,8 @@ parser.add_argument("-f", "--file", dest="filename", default=path.join(CONFIG_PA
help="The config file you want to use", metavar="CONFIG_FILE")
parser.add_argument("-d", "--debug", dest="debug",
help="The file where debug will be written", metavar="DEBUG_FILE")
+parser.add_argument("-v", "--version", dest="version",
+ help=SUPPRESS, metavar="VERSION", default="0.8-dev")
options = parser.parse_args()
config = Config(options.filename)
if firstrun: