Changeset 1889 for trunk/scripts


Ignore:
Timestamp:
Dec 24, 2008, 11:33:25 PM (15 years ago)
Author:
broder
Message:

Typo in catching blank lines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/scripts/git-migration/git-migrate

    r1888 r1889  
    8585    for line in open('merges'):
    8686        line = line.strip()
    87         if line[0] == '#' or line == '':
     87        if line == '' or line[0] == '#':
    8888            continue
    8989       
Note: See TracChangeset for help on using the changeset viewer.