1 diff --git a/rainbowstream/c_image.py b/rainbowstream/c_image.py
2 index f050150..a0fb77d 100644
3 --- a/rainbowstream/c_image.py
4 +++ b/rainbowstream/c_image.py
5 @@ -12,11 +12,7 @@ def call_c():
7 Call the C program for converting RGB to Ansi colors
9 - library = expanduser('~/.image.so')
10 - sauce = join(dirname(__file__), 'image.c')
11 - if not exists(library) or getmtime(sauce) > getmtime(library):
12 - build = "cc -fPIC -shared -o %s %s" % (library, sauce)
13 - os.system(build + " >/dev/null 2>&1")
15 image_c = ctypes.cdll.LoadLibrary(library)
17 return image_c.rgb_to_ansi