Skip to content

Commit c58da59

Browse files
committed
1.4.3 fixing docs
1 parent 6afd87f commit c58da59

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

pyproject.toml

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
[project]
22
name = "vagd"
3-
version = "1.4.2"
3+
version = "1.4.3"
44
authors = [{ name = "0x6fe1be2" }]
55
description = "VirtuAlization GDb integrations in pwntools"
66
readme = "README.md"
77
requires-python = ">=3.7"
88
dependencies = ['pwntools', 'docker', 'typer', 'rich']
99
classifiers = [
10-
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
11-
"Programming Language :: Python :: 3",
12-
"Operating System :: POSIX :: Linux",
10+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
11+
"Programming Language :: Python :: 3",
12+
"Operating System :: POSIX :: Linux",
1313
]
1414
keywords = [
15-
'vagd',
16-
'pwn',
17-
'pwntools',
18-
'exploit',
19-
'ctf',
20-
'capture',
21-
'the',
22-
'flag',
23-
'binary',
24-
'vagrant',
25-
'qemu',
26-
'docker',
15+
'vagd',
16+
'pwn',
17+
'pwntools',
18+
'exploit',
19+
'ctf',
20+
'capture',
21+
'the',
22+
'flag',
23+
'binary',
24+
'vagrant',
25+
'qemu',
26+
'docker',
2727
]
2828

2929
[project.scripts]
@@ -38,10 +38,10 @@ where = ["src"]
3838

3939
[tool.setuptools.package-data]
4040
"vagd.res" = [
41-
"template.txt",
42-
"seccomp.json",
43-
"local_template.txt",
44-
"aliases.txt",
41+
"template.txt",
42+
"seccomp.json",
43+
"local_template.txt",
44+
"aliases.txt",
4545
]
4646
"vagd.gdb" = ["*.pyi"]
4747

src/vagd/virts/pwngd.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def _install_packages(self, packages: Iterable):
125125
126126
:param packages: packages to install on remote machine
127127
"""
128-
helper.info(f'installing packages: {' '.join(packages)}')
128+
helper.info(f"installing packages: {' '.join(packages)}")
129129
self.system("sudo apt update").recvall()
130130
packages_str = " ".join(packages)
131131
self.system(f"sudo DEBIAN_FRONTEND=noninteractive apt install -y {packages_str}").recvall()

0 commit comments

Comments
 (0)