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

menuthg: catch more errors

example: IOError when .hg/store is not readable

Changeset a1592c02c80b

Parent 5c6d9cbe3bc8

by Simon Heimberg

Changes to one file · Browse files at a1592c02c80b Showing diff from parent 5c6d9cbe3bc8 Diff from another changeset...

 
117
118
119
 
 
 
120
121
122
 
117
118
119
120
121
122
123
124
125
@@ -117,6 +117,9 @@
  return repo   except RepoError:   pass + except StandardError, e: + print "error while opening repo %s:" % path + print e     return None