Skip to content

Commit

Permalink
Python3: lib/galaxy/datatypes/converters/interval_to_bed_converter.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tshtatland committed Jun 25, 2016
1 parent c9ad6e3 commit 578ed60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/galaxy/datatypes/converters/interval_to_bed_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ def __main__():
if not first_skipped_line:
first_skipped_line = count + 1
out.close()
print "%i regions converted to BED." % ( count + 1 - skipped_lines )
print("%i regions converted to BED." % ( count + 1 - skipped_lines ))
if skipped_lines > 0:
print "Skipped %d blank or invalid lines starting with line # %d." % ( skipped_lines, first_skipped_line )
print("Skipped %d blank or invalid lines starting with line # %d." % ( skipped_lines, first_skipped_line ))

if __name__ == "__main__":
__main__()

0 comments on commit 578ed60

Please sign in to comment.