Skip to content

Commit

Permalink
remove print...
Browse files Browse the repository at this point in the history
  • Loading branch information
seiya-git committed Nov 1, 2023
1 parent f6072a8 commit d2a732c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions py/Fs/Nca.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ def open(self, file = None, mode = 'rb', cryptoType = -1, cryptoKey = -1, crypto
else:
# Print.info('could not find title key %s!' % titleRightsTitleId)
self.keyStatus = False

else:
self.titleKeyDec = self.key()

Expand Down Expand Up @@ -213,8 +212,8 @@ def __getitem__(self, key):
return self.sectionFilesystems[key]

def open(self, file = None, mode = 'rb', cryptoType = -1, cryptoKey = -1, cryptoCounter = -1):

super(Nca, self).open(file, mode, cryptoType, cryptoKey, cryptoCounter)

self.header = NcaHeader()
self.partition(0x0, 0xC00, self.header, Fs.Type.Crypto.XTS, uhx(Keys.get('header_key')))
#Print.info('partition complete, seeking')
Expand Down
1 change: 0 additions & 1 deletion py/lib/Verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,6 @@ def verify_decrypt(nspx, vmsg = None):
check_tik = False

tik_data = Fs.Ticket.Ticket()
print(tik_data.__dict__)
for f in temp_hfs:
if f._path.endswith('.tik') and f._path == tik_file:
tik_data = f
Expand Down

0 comments on commit d2a732c

Please sign in to comment.