Skip to content

Commit

Permalink
Include OS name and version in user agent
Browse files Browse the repository at this point in the history
  • Loading branch information
thp committed May 1, 2016
1 parent edd4421 commit af779e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gpodder/__init__.py
Expand Up @@ -81,7 +81,7 @@


# The User-Agent string for downloads
user_agent = 'gPodder/%s (+%s)' % (__version__, __url__)
user_agent = 'gPodder/%s (+%s) %s/%s' % (__version__, __url__, platform.system(), platform.release())

# Are we running in GUI or console mode?
class UI(object):
Expand Down

0 comments on commit af779e0

Please sign in to comment.