Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

hgtk.py: correct variable name

Changeset bc30f9572fd9

Parent 99441bb0669a

by Simon Heimberg

Changes to one file · Browse files at bc30f9572fd9 Showing diff from parent 99441bb0669a Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​hgtk.py Stacked
 
64
65
66
67
 
68
69
70
 
64
65
66
 
67
68
69
70
@@ -64,7 +64,7 @@
  fd = open(filename, "r")   lines = [ x.replace("\n", "") for x in fd.readlines() ]   fd.close() - os.unlink(listfile) + os.unlink(filename)   return lines   except IOError, e:   sys.stderr.write(_('can not read file "%s". Ignored.\n') % filename)