##// END OF EJS Templates
Hotfix in controller.Project.update()
jespinoza -
r1133:682617c0adc9
parent child
Show More
@@ -970,7 +970,7 class Project(Process):
970 970
971 971 def update(self, **kwargs):
972 972
973 for key, value in kwargs:
973 for key, value in kwargs.items():
974 974 setattr(self, key, value)
975 975
976 976 def clone(self):
General Comments 0
You need to be logged in to leave comments. Login now