Skip to content

Commit 43042e7

Browse files
committed
Missed a '{0}'-type issue with python 2.6
1 parent 51e8ded commit 43042e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotly/grid_objs/grid_objs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def __str__(self):
3333
return string.format(name=self.name, data=data_string, id=self.id)
3434

3535
def __repr__(self):
36-
return 'Column("{}", {})'.format(self.data, self.name)
36+
return 'Column("{0}", {1})'.format(self.data, self.name)
3737

3838
def to_plotly_json(self):
3939
return {'name': self.name, 'data': self.data}

0 commit comments

Comments
 (0)