Edgewall Software

Changes between Version 1 and Version 2 of Ticket #12578, comment 15


Ignore:
Timestamp:
Jun 5, 2017, 7:22:17 PM (7 years ago)
Author:
Ryan J Ollos

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #12578, comment 15

    v1 v2  
    11I've been manually removing uses of `#!box` processor: TracProject/DefaultWikiPages#sync.
    22
     3{{{#!diff
    34Proposed change:
    4 {{{#!diff
    55Index: contrib/checkwiki.py
    66===================================================================
     
    2929         if response.status == 200 and content:
    3030             with open('trac/wiki/default-pages/' + name, 'w') as f:
    31 +                content = re_box_processor.sub('', content, re.MULTILINE)
     31+                content = re_box_processor.sub('', content)
    3232                 lines = content.replace('\r\n', '\n').splitlines(True)
    3333                 f.write(''.join(line for line in lines