Show More
@@ -189,7 +189,7 b' class InteractiveRunner(object):' | |||
|
189 | 189 | |
|
190 | 190 | # if the source is a string, chop it up in lines so we can iterate |
|
191 | 191 | # over it just as if it were an open file. |
|
192 |
if |
|
|
192 | if isinstance(source, basestring): | |
|
193 | 193 | source = source.splitlines(True) |
|
194 | 194 | |
|
195 | 195 | if self.echo: |
@@ -1,7 +1,11 b'' | |||
|
1 | 1 | import os.path |
|
2 | 2 | from setuptools import setup |
|
3 | 3 | |
|
4 | from setupbase import (setup_args, find_scripts, find_packages, find_package_data) | |
|
4 | from setupbase import (setup_args, | |
|
5 | find_scripts, | |
|
6 | find_packages, | |
|
7 | find_package_data, | |
|
8 | ) | |
|
5 | 9 | |
|
6 | 10 | setup_args['entry_points'] = find_scripts(True, suffix='3') |
|
7 | 11 | setup_args['packages'] = find_packages() |
General Comments 0
You need to be logged in to leave comments.
Login now