Skip to content

Commit

Permalink
str() enum value
Browse files Browse the repository at this point in the history
  • Loading branch information
sannies committed Jun 13, 2018
1 parent 3362679 commit 52f6253
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycaption/webvtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ def _cue_settings_from(self, layout):
cue_settings = ''

if alignment and alignment != 'center':
cue_settings += " align:" + alignment
cue_settings += " align:" + str(alignment)
if left_offset:
cue_settings += " position:{},line-left".format(six.text_type(left_offset))
if top_offset:
Expand Down

0 comments on commit 52f6253

Please sign in to comment.