Skip to content

Commit

Permalink
Fix syntax error. Refs #6679.
Browse files Browse the repository at this point in the history
  • Loading branch information
wdzhou committed Mar 7, 2013
1 parent 434e381 commit c1a049e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ def PyInit(self):
self.declareProperty(tableprop, "TableWorkspace containing peak profile parameters")

colchoices = ["Value", "FitOrTie", "Min", "Max", "StepSize"]
self.declareProperty("Column", "Value", mantid.kernel.StringListValidator(colchoices), "Column name of the cell to have value updated. Choices include "FitOrTie", "Max", "Min", "StepSize" and "Value"")
self.declareProperty("Column", "Value", mantid.kernel.StringListValidator(colchoices),
"Column name of the cell to have value updated. Choices include \"FitOrTie\", \"Max\", \"Min\", \"StepSize\" and \"Value\"")

rowprop = mantid.kernel.IntArrayProperty("Rows", [])
self.declareProperty(rowprop, "List of row numbers of the cell to have value updated")
Expand Down

0 comments on commit c1a049e

Please sign in to comment.