Skip to content

Commit

Permalink
Fix relative filepath issue from previous push
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Daniel Bennett committed Aug 27, 2020
1 parent 74b8dbb commit cd47c3b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api/ECNQueue.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
#------------------------------------------------------------------------------#

# The directory where queue items are
queueDirectory = os.path.join(os.path.dirname(os.getcwd()), "q-snapshot")
queueDirectory = os.path.join(os.path.dirname(os.path.dirname(__file__)), "q-snapshot")
#print(os.path.join(os.path.dirname(os.path.dirname(__file__)), "q-snapshot"))

# Queues to not load in getQueues()
queuesToIgnore = ["archives", "drafts", "inbox"]
Expand Down

0 comments on commit cd47c3b

Please sign in to comment.