Skip to content

Commit e7ea62c

Browse files
author
dragonballzeke
committed
Remove width limitation
1 parent 249f83b commit e7ea62c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

api/generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def make_poster_png(self, template_name):
8484
f_out = self.get_cache('png', template_name)
8585

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

8989
def make_posters(self,templates=env.list_templates()):
9090
for template_name in templates:

0 commit comments

Comments
 (0)