Skip to content

Commit 3aef207

Browse files
authored
Merge pull request #48 from magnusviri/main
2 parents c03ae67 + 19a33b9 commit 3aef207

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

jamf/package.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
from distutils.version import StrictVersion, LooseVersion
2323
from xml.etree import ElementTree as ET
2424

25-
from .record import Categories
25+
from .records import Categories
2626

2727
# GLOBALS
2828
TMPDIR = os.environ.get('TMPDIR', '/tmp')

jamf/records.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -416,11 +416,7 @@ def set_path(self, path, value):
416416
temp1 = path.split('/')
417417
endpoint = temp1.pop()
418418
temp2 = "/".join(temp1)
419-
print("set_path")
420-
print(temp2)
421-
print(value)
422419
placeholder = self.get_path(temp2)
423-
424420
if placeholder and endpoint in placeholder:
425421
placeholder[endpoint] = value
426422
return True

0 commit comments

Comments
 (0)