Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8.3, 0.9, and 0.9.1

stable hgshelve: default to patch.eol=strict if undefined

Fixes #544

Changeset 627835fd8d3f

Parent a26d81aa082f

by Steve Borho

Changes to one file · Browse files at 627835fd8d3f Showing diff from parent a26d81aa082f Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hgshelve.py Stacked
 
39
40
41
42
 
43
44
45
 
39
40
41
 
42
43
44
45
@@ -39,7 +39,7 @@
  if cwd:   curdir = os.getcwd()   os.chdir(cwd) - eolmode = ui.config('patch', 'eol') + eolmode = ui.config('patch', 'eol', 'strict')   try:   eol = {'strict': None, 'crlf': '\r\n', 'lf': '\n'}[eolmode.lower()]   except KeyError: