Skip to content

Commit

Permalink
Fixed docstrings to use """ instead of '''
Browse files Browse the repository at this point in the history
  • Loading branch information
lepinkainen committed Jan 4, 2016
1 parent fada0fe commit 9874077
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyfibot/modules/module_tvrage.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@


def find_series(name):
'''
"""
Finds the first show which hasn't ended.
If no running shows are found, returns the first result.
'''
"""
r = requests.get(
'http://services.tvrage.com/feeds/search.php',
params={'show': name}
Expand All @@ -27,7 +27,7 @@ def find_series(name):


def command_tvrage(bot, user, channel, args):
''' Fetch episode information from tvrage. '''
"""Fetch episode information from tvrage."""
if not args:
return bot.say(channel, 'I need a show to search for!')

Expand Down

0 comments on commit 9874077

Please sign in to comment.