We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f47d6f7 commit 5cb7831Copy full SHA for 5cb7831
1 file changed
docs/src/remap/remap.adoc
@@ -721,8 +721,8 @@ def change_prolog(self, **words):
721
self.params["current_pocket"] = self.current_pocket
722
self.params["selected_pocket"] = self.selected_pocket
723
return INTERP_OK
724
- except Exception, e:
725
- return "M6/change_prolog: %s" % (e)
+ except Exception as e:
+ return "M6/change_prolog: {}".format(e)
726
---------------------------------------------------------------------
727
728
You will find that most prolog functions look very similar:
0 commit comments