X-Git-Url: http://git.onelab.eu/?p=sfa.git;a=blobdiff_plain;f=clientbin%2FsetRecord.py;h=493400c3ba6cf0ec1d77ff39636ee7ed36afae5e;hp=886b8014b06861078a3d86ef47d61d84f87c70a6;hb=HEAD;hpb=04a3f20dc71bf8b3f96b1e3172623aa346a638a7 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)