Skip to content

Commit

Permalink
Removing fuzzing
Browse files Browse the repository at this point in the history
  • Loading branch information
winst committed Nov 18, 2012
1 parent fce2187 commit 7e50632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def finish(session_id):
os.mkdir("output/%s" % session_id)
except:
pass
subprocess.call("convert -delay 1x15 -loop 0 tmp/%s/out-*.gif -fuzz 5%% -layers Optimize output/%s/final.gif" % (session_id, session_id), shell=True)
subprocess.call("convert -delay 1x15 -loop 0 tmp/%s/out-*.gif -layers Optimize output/%s/final.gif" % (session_id, session_id), shell=True)

return url_for("output_gif", filename="%s/final.gif" % session_id)

Expand Down

0 comments on commit 7e50632

Please sign in to comment.