Skip to content

Commit 25391bb

Browse files
committed
[Section] Switch '/' to '|' in '__repr__' style
1 parent 62ca6d8 commit 25391bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

odml/section.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def __init__(self, name=None, type=None, parent=None,
5757
self.parent = parent
5858

5959
def __repr__(self):
60-
return "Section[%d/%d] {name = %s, type = %s, id = %s}" % (len(self._sections),
60+
return "Section[%d|%d] {name = %s, type = %s, id = %s}" % (len(self._sections),
6161
len(self._props),
6262
self._name,
6363
self.type,

0 commit comments

Comments
 (0)