calendar

BSD calendar reimplementation
git clone https://git.ce9e.org/calendar.git

commit
de82084159b06d038b3de7ebb5663f11fb4f0bcb
parent
eed058bc6d382394cb28bbe3c42a4646200bb74a
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2017-01-30 22:40
Fix version extraction

Diffstat

M setup.py 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/setup.py b/setup.py

@@ -12,7 +12,7 @@ with open('cal.py') as fh:
   12    12         line = line.rstrip()
   13    13 
   14    14         if line.startswith('__version__ = '):
   15    -1             version = line.strip()[14:]
   -1    15             version = line.strip()[15:-1]
   16    16 
   17    17         if docstring_started:
   18    18             if line == '"""':