Skip to content

Commit

Permalink
Fix variable name typo in addMember
Browse files Browse the repository at this point in the history
  • Loading branch information
CravateRouge committed Apr 16, 2023
1 parent ae8a465 commit 9d9411c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion autobloody/automation.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def _addMember(self, rel):
if self.simulation:
member = rel["start_node"]["name"]
group = rel["end_node"]["name"]
self._printOperation(operation.__name__, [group, member])
self._printOperation(add_operation.__name__, [group, member])
else:
member = rel["start_node"]["objectid"]
group = rel["end_node"]["distinguishedname"]
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@

setup(
name="autobloody",
version="0.1.5",
version="0.1.6",
description="AD Privesc Automation",
long_description=long_description,
long_description_content_type="text/markdown",
author="CravateRouge",
author_email="baptiste.crepin@ntymail.com",
url="https://github.com/CravateRouge/autobloody",
download_url=(
"https://github.com/CravateRouge/autobloody/archive/refs/tags/v0.1.5.tar.gz"
"https://github.com/CravateRouge/autobloody/archive/refs/tags/v0.1.6.tar.gz"
),
packages=["autobloody"],
license="MIT",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_functional.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import unittest, subprocess, pathlib, json, hashlib, os, re
import unittest, subprocess, pathlib, json, os


class TestModules(unittest.TestCase):
Expand Down

0 comments on commit 9d9411c

Please sign in to comment.