Skip to content

Commit

Permalink
BUGFIX: Missing string in sliding scale code
Browse files Browse the repository at this point in the history
  • Loading branch information
timmahrt committed May 16, 2016
1 parent 9090f7a commit 6b52c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lmeds/post_process/transpose_survey.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def transposeSurvey(path, surveyFullPathList, outputPath):
for widgetType, widgetTextList in surveyItem.widgetList:
if widgetType == "None":
continue
if widgetType == "Multiline_Textbox":
if widgetType in ["Multiline_Textbox", "Sliding_Scale"]:
widgetTextList = ["", ]
blankTxt = ["", ] * (len(widgetTextList) - 1)
# Removing commas b/c we're using csv files
Expand Down

0 comments on commit 6b52c86

Please sign in to comment.