diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2018-12-01 19:57:24 +0100 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2018-12-01 19:57:24 +0100 |
commit | 2d5c19105228e47df42218fd6b8e0b41d3ba394f (patch) | |
tree | 88e6141de2b5f5eb79703935d8a6d420c1f60341 | |
parent | 51ffadcdb64210824d9982f5417bda81dae13b2e (diff) | |
download | crocoite-2d5c19105228e47df42218fd6b8e0b41d3ba394f.tar.gz crocoite-2d5c19105228e47df42218fd6b8e0b41d3ba394f.tar.bz2 crocoite-2d5c19105228e47df42218fd6b8e0b41d3ba394f.zip |
util: Remove unused function
-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 |