Mercurial > hg > PaInt
comparison paint/info.py @ 59:acee5e882768
the egg-info tests fail. yay!
| author | Jeff Hammel <jhammel@mozilla.com> |
|---|---|
| date | Fri, 25 Jan 2013 07:12:33 -0800 |
| parents | 13767ee2ddf4 |
| children | aa3c90255db6 |
comparison
equal
deleted
inserted
replaced
| 58:13767ee2ddf4 | 59:acee5e882768 |
|---|---|
| 99 return self._egg_info_path | 99 return self._egg_info_path |
| 100 | 100 |
| 101 def _pkg_info(self): | 101 def _pkg_info(self): |
| 102 """returns path to PKG-INFO file""" | 102 """returns path to PKG-INFO file""" |
| 103 | 103 |
| 104 if self._pkg_info_path: | 104 if getattr(self, '_pkg_info_path', None): |
| 105 # return cached value | 105 # return cached value |
| 106 return self._pkg_info_path | 106 return self._pkg_info_path |
| 107 | 107 |
| 108 try: | 108 try: |
| 109 egg_info = self._egg_info() | 109 egg_info = self._egg_info() |
