aboutsummaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas@google.com>2016-08-22 14:00:42 +0200
committerGitHub <noreply@github.com>2016-08-22 14:00:42 +0200
commitdae9c7ffd0bd3780cee1b70b602867fcfe66c3a5 (patch)
tree90747ba65651b00ec659e5f652fc5d0c6a5bdb48 /python
parent403729c454ca5b715010947abccb207449a2e3c3 (diff)
downloadbrotli-dae9c7ffd0bd3780cee1b70b602867fcfe66c3a5.zip
brotli-dae9c7ffd0bd3780cee1b70b602867fcfe66c3a5.tar.gz
brotli-dae9c7ffd0bd3780cee1b70b602867fcfe66c3a5.tar.bz2
Fix brotlimodule
Diffstat (limited to 'python')
-rw-r--r--python/brotlimodule.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/brotlimodule.cc b/python/brotlimodule.cc
index 9e8c01a..e0ab1b5 100644
--- a/python/brotlimodule.cc
+++ b/python/brotlimodule.cc
@@ -2,8 +2,8 @@
#include <Python.h>
#include <bytesobject.h>
#include <vector>
-#include "../enc/encode.h"
-#include "../dec/decode.h"
+#include "../public/encode.h"
+#include "../public/decode.h"
#include "../tools/version.h"
#if PY_MAJOR_VERSION >= 3