comparison paint/package.py @ 69:fea269259222

move comment to more appropriate place
author Jeff Hammel <jhammel@mozilla.com>
date Sat, 26 Jan 2013 00:00:56 -0800
parents d001017d5870
children da69d58f960d
comparison
equal deleted inserted replaced
68:d001017d5870 69:fea269259222
124 124
125 ### python-package-specific functionality 125 ### python-package-specific functionality
126 126
127 def info(self): 127 def info(self):
128 """return info dictionary for package""" 128 """return info dictionary for package"""
129 # could use pkginfo module
130
131 self._log(">>> Getting the info") 129 self._log(">>> Getting the info")
132 return self.package_info(self._path())() 130 return self.package_info(self._path())()
133 131
134 def dependencies(self): 132 def dependencies(self):
135 return self.package_info(self._path()).dependencies() 133 return self.package_info(self._path()).dependencies()