Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Forgot return in front of statement. Fixes #2592.
  • Loading branch information
felixfontein committed Dec 10, 2016
1 parent 6e1ccb8 commit d833cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/task/archive.py
Expand Up @@ -97,7 +97,7 @@ def get_classification_friendly_name(self, classification, lang, only_last_compo
elif len(classification) == 1:
return classification[0]
elif len(classification) == 2:
nikola.utils.LocaleBorg().get_month_name(int(classification[1]), lang)
return nikola.utils.LocaleBorg().get_month_name(int(classification[1]), lang)
else:
# Fallback
return '/'.join(classification)
Expand Down

0 comments on commit d833cc1

Please sign in to comment.