Skip to content

Commit

Permalink
Fix use of __doc__ in setup.py for -OO mode
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanders11 committed Oct 19, 2015
1 parent ac4433c commit 922442f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"""
from __future__ import division, print_function

DOCLINES = __doc__.split("\n")
DOCLINES = (__doc__ or '').split("\n")

import os
import sys
Expand Down

0 comments on commit 922442f

Please sign in to comment.