aboutsummaryrefslogtreecommitdiff
path: root/cleanup.py
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-12-10 13:25:27 -0500
committerB Stack <bgstack15@gmail.com>2020-12-10 13:25:27 -0500
commit1f05dba5702e3a9b13e9795310200821dd1e520c (patch)
treeb79ee1ade76d9cab46f282e269ba9b67ec1e1e8b /cleanup.py
parentadd initial Makefile for install, uninstall (diff)
downloadhex-zero-1f05dba5702e3a9b13e9795310200821dd1e520c.tar.gz
hex-zero-1f05dba5702e3a9b13e9795310200821dd1e520c.tar.bz2
hex-zero-1f05dba5702e3a9b13e9795310200821dd1e520c.zip
add debian/ and improve installation
Diffstat (limited to 'cleanup.py')
-rwxr-xr-xcleanup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cleanup.py b/cleanup.py
index 09193e1..3d2bf3c 100755
--- a/cleanup.py
+++ b/cleanup.py
@@ -19,7 +19,7 @@
"""
import os, sys, time, datetime
-from fhost import app
+from hex_zero import app
os.chdir(os.path.dirname(sys.argv[0]))
os.chdir(app.config["FHOST_STORAGE_PATH"])
bgstack15