Skip to content

Commit

Permalink
Fix inconsistent references to README.rst and funniest.cmd, thanks @M…
Browse files Browse the repository at this point in the history
  • Loading branch information
storborg committed Mar 6, 2016
1 parent 163a098 commit c1798df
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
File renamed without changes.
1 change: 1 addition & 0 deletions funniest/funniest/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from markdown import markdown


def joke():
return markdown(u'Wenn ist das Nunst\u00fcck git und Slotermeyer?'
u'Ja! ... **Beiherhund** das Oder die Flipperwaldt '
Expand Down
2 changes: 1 addition & 1 deletion funniest/funniest/tests/test_command_line.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from unittest import TestCase

from funniest.cmd import main
from funniest.command_line import main


class TestCmd(TestCase):
Expand Down
4 changes: 3 additions & 1 deletion funniest/setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
from setuptools import setup


def readme():
with open('README.rst.example') as f:
with open('README.rst') as f:
return f.read()


setup(name='funniest',
version='0.1',
description='The funniest joke in the world',
Expand Down

0 comments on commit c1798df

Please sign in to comment.