summaryrefslogtreecommitdiff
path: root/client/jasperpath.py
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-10-06 16:52:53 +0200
committerschneefux <schneefux+commit@schneefux.xyz>2014-10-06 16:52:53 +0200
commit2b1e8411ab5eaa7e1349b78d03270ab02ae2950d (patch)
treeed914cbf8964bbe26ba28e80589f4c289b3fac3a /client/jasperpath.py
parent890a5798fcf7f9b9dc06529aa4bc7fe903d7ca1a (diff)
downloadjasper-client-2b1e8411ab5eaa7e1349b78d03270ab02ae2950d.tar.gz
jasper-client-2b1e8411ab5eaa7e1349b78d03270ab02ae2950d.zip
Fix flake8 style nits
Diffstat (limited to 'client/jasperpath.py')
-rw-r--r--client/jasperpath.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/jasperpath.py b/client/jasperpath.py
index 53534ff..787e2e0 100644
--- a/client/jasperpath.py
+++ b/client/jasperpath.py
@@ -2,7 +2,8 @@
import os
# Jasper main directory
-APP_PATH = os.path.normpath(os.path.join(os.path.dirname(os.path.abspath(__file__)), os.pardir))
+APP_PATH = os.path.normpath(os.path.join(
+ os.path.dirname(os.path.abspath(__file__)), os.pardir))
DATA_PATH = os.path.join(APP_PATH, "static")
LIB_PATH = os.path.join(APP_PATH, "client")