X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=clientbin%2FsetRecord.py;h=493400c3ba6cf0ec1d77ff39636ee7ed36afae5e;hb=78e5fb75e3793ae9dfce7f1bbd4a2b0f27b7ecc6;hp=886b8014b06861078a3d86ef47d61d84f87c70a6;hpb=8e558be62ca1e048cedb76d6036d1acbfa827bd4;p=sfa.git diff --git a/clientbin/setRecord.py b/clientbin/setRecord.py index 886b8014..493400c3 100755 --- a/clientbin/setRecord.py +++ b/clientbin/setRecord.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/env python3 """ Updates record objects @@ -58,7 +58,7 @@ def replaceDict(newval, recordDict, options): Replaces field in dict """ # Check type of old field matches type of new field - for (key, val) in newval.iteritems(): + for (key, val) in newval.items(): recordDict[key] = val @@ -66,7 +66,7 @@ def modDict(newval, recordDict, options): """ Checks type of existing field, addends new field """ - for (key, val) in newval.iteritems(): + for (key, val) in newval.items(): if (type(recordDict[key]) == list): if (type(val) == list): recordDict[key] = recordDict[key] + val @@ -98,7 +98,7 @@ def main(): if args: editDict(args, record_dict, options) if options.DEBUG: - print "New Record:\n%s" % record_dict + print("New Record:\n%s" % record_dict) record.parse_dict(record_dict) s = record.toxml() @@ -108,4 +108,4 @@ if __name__ == '__main__': try: main() except Exception as e: - print e + print(e)