Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
oz123 committed Jun 17, 2015
2 parents 310b769 + c948d1c commit f4418c5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion pwman/__init__.py
Expand Up @@ -23,11 +23,16 @@
import sys
import re
import colorama
import pkg_resources
from pwman.util import config
from pwman.data.factory import check_db_version

appname = "pwman3"
version = "0.7"

try:
version = pkg_resources.get_distribution('pwman3').version
except pkg_resources.DistributionNotFound: # pragma: no cover
version = "0.7.1"

website = "http://pwman3.github.io/pwman3/"
author = "Oz Nahum Tiram"
Expand Down

0 comments on commit f4418c5

Please sign in to comment.