Skip to content

Commit

Permalink
merge master
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Walladge committed Dec 25, 2017
2 parents 9939ace + a764c3c commit 0ff3146
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions piqueserver/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
pyspades - default/featured server
"""
from __future__ import print_function, unicode_literals
from six import text_type
import sys
import os
import imp
Expand All @@ -32,6 +31,8 @@
from collections import deque

import six
from six import text_type
from six.moves import range

from ipaddress import ip_network, ip_address
from twisted.internet import reactor
Expand Down Expand Up @@ -61,11 +62,6 @@
# won't be used; just need to be executed
import piqueserver.core_commands

try:
range = xrange # pylint: disable=redefined-builtin
except NameError:
pass

def check_passwords(passwords):
'''
Validator function to be run when the passwords configuration item is updated/set.
Expand Down

0 comments on commit 0ff3146

Please sign in to comment.