Skip to content

Commit

Permalink
Remove width limitation
Browse files Browse the repository at this point in the history
  • Loading branch information
dragonballzeke committed Jan 7, 2020
1 parent 249f83b commit e7ea62c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def make_poster_png(self, template_name):
f_out = self.get_cache('png', template_name)

with open(os.devnull, 'wb') as devnull:
subprocess.check_call(['inkscape', '-z', '-w', '600', '-f', f_in, '-e', f_out], stdout=devnull, stderr=subprocess.STDOUT)
subprocess.check_call(['inkscape', '-z', '-f', f_in, '-e', f_out], stdout=devnull, stderr=subprocess.STDOUT)

def make_posters(self,templates=env.list_templates()):
for template_name in templates:
Expand Down

0 comments on commit e7ea62c

Please sign in to comment.