Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bioformats/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@
import wx.py.PyCrust

wx.py.PyCrust.main()
J.kill_vm()
javabridge.kill_vm()
4 changes: 2 additions & 2 deletions bioformats/formatreader.py
Original file line number Diff line number Diff line change
Expand Up @@ -748,8 +748,8 @@ def init_reader(self):
je, "java/io/FileNotFoundException"):
raise IOError(
errno.ENOENT,
"The file, \"%s\", does not exist." % path,
path)
"The file, \"%s\", does not exist." % self.path,
self.path)
e2 = IOError(
errno.EINVAL, "Could not load the file as an image (see log for details)",
self.path.encode('utf-8'))
Expand Down
2 changes: 1 addition & 1 deletion bioformats/omexml.py
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,7 @@ def get_Description(self):
return get_text(description)

def set_Description(self, text):
make_text_node(self.node, NS_SPW, "Description", test)
make_text_node(self.node, self.ns['spw'], "Description", text)
Description = property(get_Description, set_Description)

def get_Well(self):
Expand Down