Skip to content

Commit

Permalink
Merge pull request #15 from camicroscope/release
Browse files Browse the repository at this point in the history
For 3.2.0
  • Loading branch information
birm authored Mar 29, 2019
2 parents dbc51ea + 7ae3af9 commit 15d6dcf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3-jessie
FROM python:3-stretch

WORKDIR /var/www

Expand Down
4 changes: 2 additions & 2 deletions SlideUtil.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def process(img):
if checkslide(img['name'], check_url):
try:
img = openslidedata(img)
img['study'] = img['study'] or ""
img['specimen'] = img['specimen'] or ""
img['study'] = img.get('study', "")
img['specimen'] = img.get('specimen', "")
img['location'] = img['location'] or img['filename']
img = postslide(img, post_url)
except BaseException as e:
Expand Down

0 comments on commit 15d6dcf

Please sign in to comment.