1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/db93f1033bf8/ changeset: db93f1033bf8 user: fbacall date: 2012-07-10 10:01:19 summary: Fixed minor error in workflow image SVG affected #: 1 file diff -r dc20a7b5b6ce453a5fee7546a00604313bf1c54d -r db93f1033bf861fadb7bdf838d1d5eb40cde5135 lib/galaxy/web/controllers/workflow.py --- a/lib/galaxy/web/controllers/workflow.py +++ b/lib/galaxy/web/controllers/workflow.py @@ -1930,8 +1930,8 @@ canvas.append(boxes) canvas.append(text) width, height = (max_x + max_width + 50), max_y + 300 - canvas['width'] = "%s px" % width - canvas['height'] = "%s px" % height + canvas['width'] = "%spx" % width + canvas['height'] = "%spx" % height canvas['viewBox'] = "0 0 %s %s" % (width, height) return canvas Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.