diff options
Diffstat (limited to 'crocoite')
-rw-r--r-- | crocoite/behavior.py | 2 | ||||
-rw-r--r-- | crocoite/util.py | 5 |
2 files changed, 1 insertions, 6 deletions
diff --git a/crocoite/behavior.py b/crocoite/behavior.py index 8cc7ab4..3e828b6 100644 --- a/crocoite/behavior.py +++ b/crocoite/behavior.py @@ -32,7 +32,7 @@ import pkg_resources from html5lib.serializer import HTMLSerializer import yaml -from .util import randomString, getFormattedViewportMetrics, removeFragment +from .util import getFormattedViewportMetrics, removeFragment from . import html from .html import StripAttributeFilter, StripTagFilter, ChromeTreeWalker from .devtools import Crashed diff --git a/crocoite/util.py b/crocoite/util.py index 18a051a..da6d54a 100644 --- a/crocoite/util.py +++ b/crocoite/util.py @@ -26,11 +26,6 @@ import random, sys import hashlib, pkg_resources from urllib.parse import urlsplit, urlunsplit -def randomString (length=None, chars='abcdefghijklmnopqrstuvwxyz'): - if length is None: - length = random.randint (16, 32) - return ''.join (map (lambda x: random.choice (chars), range (length))) - def packageUrl (path): """ Create URL for package data stored into WARC |