Commit 1265c31f authored by Jason R. Coombs's avatar Jason R. Coombs

Replace comment with docstring

parent 50d864aa
...@@ -468,9 +468,10 @@ def write_entries(cmd, basename, filename): ...@@ -468,9 +468,10 @@ def write_entries(cmd, basename, filename):
def get_pkg_info_revision(): def get_pkg_info_revision():
# See if we can get a -r### off of PKG-INFO, in case this is an sdist of """
# a subversion revision Get a -r### off of PKG-INFO Version in case this is an sdist of
# a subversion revision.
"""
if os.path.exists('PKG-INFO'): if os.path.exists('PKG-INFO'):
with io.open('PKG-INFO') as f: with io.open('PKG-INFO') as f:
for line in f: for line in f:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment