Skip to content

Commit

Permalink
Fixes Issue #9
Browse files Browse the repository at this point in the history
  • Loading branch information
stamparm committed Dec 15, 2015
1 parent 08edb10 commit 709c419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
trails = {}

NAME = "Maltrail"
VERSION = "0.8.163"
VERSION = "0.8.164"
SERVER_HEADER = "%s/%s" % (NAME, VERSION)
DATE_FORMAT = "%Y-%m-%d"
ROTATING_CHARS = ('\\', '|', '|', '/', '-')
Expand Down Expand Up @@ -108,7 +108,7 @@ class MEMORYSTATUS(ctypes.Structure):
try:
import psutil

retval = psutil.phymem_usage().total
retval = psutil.virtual_memory().total
except:
pass

Expand Down

0 comments on commit 709c419

Please sign in to comment.