summaryrefslogtreecommitdiff
path: root/tox/_config.py
diff options
context:
space:
mode:
authorholger krekel <holger@merlinux.eu>2014-06-02 15:23:35 +0200
committerholger krekel <holger@merlinux.eu>2014-06-02 15:23:35 +0200
commitc2498a59ee0bd5905c15529acf97d4d10d43818b (patch)
tree692e2300ccaa9410eb54b20ea7a3de8f29239590 /tox/_config.py
parentf22ce604ac6c14268a5b174d5aaacbf99e352f29 (diff)
downloadtox-git-c2498a59ee0bd5905c15529acf97d4d10d43818b.tar.gz
backout change b0afb96 from @schlamar
Diffstat (limited to 'tox/_config.py')
-rw-r--r--tox/_config.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox/_config.py b/tox/_config.py
index 5c6398a3..0a9dc1a8 100644
--- a/tox/_config.py
+++ b/tox/_config.py
@@ -201,7 +201,7 @@ def get_homedir():
def make_hashseed():
max_seed = 4294967295
- if sys.platform == 'win32' and sys.version_info < (3, 4):
+ if sys.platform == 'win32':
max_seed = 1024
return str(random.randint(1, max_seed))