File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ __license__ = """
20
20
You should have received a copy of the GNU General Public License
21
21
along with this program. If not, see <http://www.gnu.org/licenses/>.
22
22
"""
23
- __version__ = '0.0.3 '
23
+ __version__ = '0.0.4 '
24
24
25
25
26
26
import dotenv
@@ -314,6 +314,7 @@ def main(options):
314
314
except (SystemExit , KeyboardInterrupt ):
315
315
rc = 255
316
316
except IOError , e :
317
+ rc = 5
317
318
LOG .error (e )
318
319
except Exception , e :
319
320
rc = 6
Original file line number Diff line number Diff line change 4
4
import os
5
5
from setuptools import find_packages , setup
6
6
7
- version = '0.0.3 '
7
+ version = '0.0.4 '
8
8
9
9
current_dir = os .path .abspath (os .path .dirname (__file__ ))
10
10
requirements = [line .strip () for line in open (os .path .join (current_dir , 'requirements.txt' ), 'r' ).readlines ()]
You can’t perform that action at this time.
0 commit comments