Skip to content

Commit 523105f

Browse files
author
Ilya Ableev
committed
Fixed print -> print_message for python3
1 parent 57be163 commit 523105f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zbxtg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def update_cache_uid(self, name, uid, message="Add new string to cache file"):
208208

209209
def get_uid_from_cache(self, name):
210210
if self.debug:
211-
print "Trying to read cached uid for {0}, {1}, from {2}".format(name, self.type, self.tmp_uids)
211+
print_message("Trying to read cached uid for {0}, {1}, from {2}".format(name, self.type, self.tmp_uids))
212212
uid = 0
213213
if os.path.isfile(self.tmp_uids):
214214
with open(self.tmp_uids, 'r') as cache_file_uids:

0 commit comments

Comments
 (0)