Skip to content

Commit

Permalink
Remove semicolons from code.
Browse files Browse the repository at this point in the history
  • Loading branch information
Blazej Pindelski committed Apr 30, 2014
1 parent 33d32d8 commit 6c6a700
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/tools/OmeroPy/src/omero/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def __init__(self, args = None, id = None, \
if id.properties == None:
id.properties = Ice.createProperties(args)

id.properties.parseCommandLineOptions("omero", args);
id.properties.parseCommandLineOptions("omero", args)
if host:
id.properties.setProperty("omero.host", str(host))
if not port:
Expand Down Expand Up @@ -175,7 +175,7 @@ def _initData(self, id):
"""

if not id:
raise omero.ClientError("No initialization data provided.");
raise omero.ClientError("No initialization data provided.")

# Strictly necessary for this class to work
id.properties.setProperty("Ice.ImplicitContext", "Shared")
Expand Down Expand Up @@ -907,7 +907,7 @@ def killSession(self):
except:
self.__logger.warning("Cannot get session service for killSession. Using closeSession")
self.closeSession()
return -1;
return -1

count = 0
try:
Expand Down Expand Up @@ -1044,7 +1044,7 @@ def _noop(self):
pass
def _closeSession(self):
try:
self.oa.deactivate();
self.oa.deactivate()
except Exception, e:
sys.err.write("On session closed: " + str(e))

Expand Down

0 comments on commit 6c6a700

Please sign in to comment.