Skip to content

Commit 98c682d

Browse files
authored
Remove debug print out
1 parent e952f53 commit 98c682d

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

keyauth.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ def init(self):
6060
sys.exit()
6161

6262
response = encryption.decrypt(response, self.secret, init_iv)
63-
print(response)
6463
json = jsond.loads(response)
6564

6665
if not json["success"]:
@@ -171,7 +170,6 @@ def license(self, key, hwid=None):
171170
}
172171

173172
response = self.__do_request(post_data)
174-
print(response)
175173
response = encryption.decrypt(response, self.enckey, init_iv)
176174

177175
json = jsond.loads(response)
@@ -251,7 +249,6 @@ def webhook(self, webid, param):
251249
response = self.__do_request(post_data)
252250

253251
response = encryption.decrypt(response, self.enckey, init_iv)
254-
print(response)
255252
json = jsond.loads(response)
256253

257254
if json["success"]:

0 commit comments

Comments
 (0)