Skip to content

Commit

Permalink
Merge pull request SciLifeLab#218 from rernst/patch-1
Browse files Browse the repository at this point in the history
Python 2.6 compatibility
  • Loading branch information
Galithil authored Feb 11, 2019
2 parents 722974f + 833564e commit cf29565
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion genologics/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -1034,7 +1034,7 @@ class Step(Entity):
def advance(self):
self.get()
self.root = self.lims.post(
uri="{}/advance".format(self.uri),
uri="{0}/advance".format(self.uri),
data=self.lims.tostring(ElementTree.ElementTree(self.root))
)

Expand Down

0 comments on commit cf29565

Please sign in to comment.