From 3234d216541a7ae697883448e245387a74d51667 Mon Sep 17 00:00:00 2001
From: Chris Lane <chris@chris-allen-lane.com>
Date: Mon, 11 Nov 2013 17:48:06 -0500
Subject: [PATCH] Fixing filename error in setup.py

I slightly borked a merge conflict a moment ago.
---
 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/setup.py b/setup.py
index df3fb01..ec94f8f 100644
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ setup(name='cheat',
       package_data={'cheatsheets': [f for f in os.listdir('cheatsheets')
                                     if '.' not in f]},
       scripts=['cheat'],
-      data_files=[('/usr/share/zsh/site-functions', ['autocompletion/cheat.zsh']),
+      data_files=[('/usr/share/zsh/site-functions', ['autocompletion/_cheat.zsh']),
                   ('/etc/bash_completion.d'       , ['autocompletion/cheat.bash']),
                   ('/usr/share/fish/completions'  , ['autocompletion/cheat.fish'])
               ]