Skip to content

Commit

Permalink
Fixed space issue in email subject
Browse files Browse the repository at this point in the history
  • Loading branch information
ywkim312 committed Jan 18, 2024
1 parent 72f7d96 commit 0e1deac
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed
- Rabbitmq username and password [#61](https://github.com/ncsa/standalone-smm-analytics/issues/90)
- Email notification subject space issue [#102](https://github.com/ncsa/standalone-smm-analytics/issues/102)

### Added
- Docker compose file for clowder connection [#88](https://github.com/ncsa/standalone-smm-analytics/issues/88)
Expand Down
2 changes: 1 addition & 1 deletion containerized_analytics/smile/autophrase/notification.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def notification(toaddr, case, filename, links, sessionURL):
</div>
</body>
</html>"""
subject = f'Your{fpath[2]}computation is completed!'
subject = f'Your {fpath[2]} computation is completed!'
else:
html = None
subject = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def notification(toaddr, case, filename, links, sessionURL):
</div>
</body>
</html>"""
subject = f'Your{fpath[2]}computation is completed!'
subject = f'Your {fpath[2]} computation is completed!'
else:
html = None
subject = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def notification(toaddr, case, filename, links, sessionURL):
</div>
</body>
</html>"""
subject = f'Your{fpath[2]}computation is completed!'
subject = f'Your {fpath[2]} computation is completed!'
else:
html = None
subject = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def notification(toaddr, case, filename, links, sessionURL):
</div>
</body>
</html>"""
subject = f'Your{fpath[2]}computation is completed!'
subject = f'Your {fpath[2]} computation is completed!'
else:
html = None
subject = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def notification(toaddr, case, filename, links, sessionURL):
</div>
</body>
</html>"""
subject = f'Your{fpath[2]}computation is completed!'
subject = f'Your {fpath[2]} computation is completed!'
else:
html = None
subject = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def notification(toaddr, case, filename, links, sessionURL):
</div>
</body>
</html>"""
subject = f'Your{fpath[2]}computation is completed!'
subject = f'Your {fpath[2]} computation is completed!'
else:
html = None
subject = None
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def notification(toaddr, case, filename, links, sessionURL):
</div>
</body>
</html>"""
subject = f'Your{fpath[2]}computation is completed!'
subject = f'Your {fpath[2]} computation is completed!'
else:
html = None
subject = None
Expand Down

0 comments on commit 0e1deac

Please sign in to comment.