Browse Source

Add double space before comments in source rewrite

pull/6/head
Marcio Mazza 10 years ago
parent
commit
3c3685c249
  1. 2
      legacy/scripts/scrap_original_forms.py

2
legacy/scripts/scrap_original_forms.py

@ -116,7 +116,7 @@ def source_with_verbose_names(model):
for line, legacy_name in new_lines:
line = line.rstrip().ljust(cols)
if legacy_name:
yield line + ' # ' + legacy_name
yield line + ' # ' + legacy_name
else:
yield line

Loading…
Cancel
Save