Skip to content

Commit

Permalink
BF: email in info.php output should be '' when empty
Browse files Browse the repository at this point in the history
  • Loading branch information
peircej committed Mar 15, 2017
1 parent e47d90a commit d68c36b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions psychopy/app/builder/components/settings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -352,9 +352,9 @@ def copyFileWithMD5(src, dst):
osfDataFolder = 'data'
# is email a defined parameter for this version
if 'email' in self.params:
email = str(self.params['email'])
email = repr(self.params['email'].val)
else:
email = ''
email = "''"
if projLabel in projectCatalog: # this is the psychopy descriptive label (id+title)
proj = projectCatalog[projLabel]
osfID = proj.osf.id
Expand Down

0 comments on commit d68c36b

Please sign in to comment.