Skip to content

Commit 6292a42

Browse files
author
Thibault de Boissiere
committed
Remove print
1 parent 1f405f8 commit 6292a42

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Sobolev/make_gif.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,11 @@
88
list_files_20pts = natsorted([f for f in list_files if "20_npts" in f])
99
list_files_100pts = natsorted([f for f in list_files if "100_npts" in f])
1010

11-
print "\n".join(list_files_20pts)
12-
1311
str_20pts = " ".join(list_files_20pts)
1412
str_100pts = " ".join(list_files_100pts)
1513

16-
cmd = "convert -delay 80 -loop 0 %s figures/tang_20pts.gif" % str_20pts
14+
cmd = "convert -delay 80 -resize 600x600 -loop 0 %s figures/tang_20pts.gif" % str_20pts
1715
subprocess.call(shlex.split(cmd))
1816

19-
cmd = "convert -delay 80 -loop 0 %s figures/tang_100pts.gif" % str_100pts
17+
cmd = "convert -delay 80 -resize 600x600 -loop 0 %s figures/tang_100pts.gif" % str_100pts
2018
subprocess.call(shlex.split(cmd))

0 commit comments

Comments
 (0)