##// END OF EJS Templates
graphmod: use raw string...
Gregory Szorc -
r41677:fb9e11fd default
parent child Browse files
Show More
@@ -451,7 +451,7 b' def ascii(ui, state, type, char, text, c'
451 # If 'graphshorten' config, only draw shift_interline
451 # If 'graphshorten' config, only draw shift_interline
452 # when there is any non vertical flow in graph.
452 # when there is any non vertical flow in graph.
453 if state['graphshorten']:
453 if state['graphshorten']:
454 if any(c in '\/' for c in shift_interline if c):
454 if any(c in br'\/' for c in shift_interline if c):
455 lines.append(shift_interline)
455 lines.append(shift_interline)
456 # Else, no 'graphshorten' config so draw shift_interline.
456 # Else, no 'graphshorten' config so draw shift_interline.
457 else:
457 else:
General Comments 0
You need to be logged in to leave comments. Login now