eshad / httplib2

Automatically exported from code.google.com/p/httplib2
0 stars 0 forks source link

User-Agent field includes "$Rev$" #135

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
The User-Agent field sent to servers has the string "$Rev$" in it
instead of a version:

   User-Agent: Python-httplib2/$Rev$

This is due to a revision control tag that is never replaced.
/usr/share/pyshared/httplib2/__init__.py:

   __version__ = "$Rev$"
   ...
   headers['user-agent'] = "Python-httplib2/%s" % __version__

Original issue reported on code.google.com by dktrkr...@gmail.com on 6 Mar 2011 at 1:29

GoogleCodeExporter commented 9 years ago
Fixed in 
http://code.google.com/p/httplib2/source/detail?r=674213f40392c7764b0a54c7f6f6a3
4fc199891b

Original comment by joe.gregorio@gmail.com on 6 Jun 2011 at 8:58