⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.144
Server IP:
157.245.143.252
Server:
Linux www 6.11.0-9-generic #9-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 14 13:19:59 UTC 2024 x86_64
Server Software:
nginx/1.26.0
PHP Version:
8.3.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
lib
/
python3
/
dist-packages
/
debian
/
View File Name :
__init__.py
""" Tools for working with Debian-related file formats """ __version__ = "" try: # pylint: disable=no-member import debian._version __version__ = debian._version.__version__ except ImportError: try: # Try to extract the version from the package changelog and # determine whether it is a post-release or pre-release version. import os.path import debian.changelog changelog_filename = os.path.join( os.path.dirname(__file__), '..', '..', 'debian', 'changelog') with open(changelog_filename, 'rb') as fh: c = debian.changelog.Changelog(fh) version = str(c.version) mark = "~" if c.distributions == 'UNRELEASED' else "+" except: # pylint: disable=bare-except # Fake a version string in desperation version = '0.0.0' mark = '-' import datetime timestamp = datetime.datetime.utcnow().strftime("%Y%m%d") __version__ = "%s%sgit%s" % (version, mark, timestamp)