Console OpenVPN, développée en Django
Permet de gérer des instances, serveurs, et comptes OpenVPN
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
VERSION = (1, 0, 'final') |
|
|
|
def get_version(): |
|
"Returns the version as a human-format string." |
|
v = '.'.join([str(i) for i in VERSION[:-1]]) |
|
if VERSION[-1]: |
|
from django.utils.version import get_svn_revision |
|
v = '%s-%s-%s' % (v, VERSION[-1], get_svn_revision()) |
|
return v
|
|
|