Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: internetarchive/brozzler
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1706a8684725ae61f7de070831f75594ddad6614
Choose a base ref
..
head repository: internetarchive/brozzler
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3b017ade89798bfff481c40e95f94693c9313992
Choose a head ref
Showing with 2 additions and 1 deletion.
  1. +2 −1 brozzler/__init__.py
3 changes: 2 additions & 1 deletion brozzler/__init__.py
Original file line number Diff line number Diff line change
@@ -412,6 +412,8 @@ def suggest_default_chrome_exe():
# Synchronize epoch with doublethink if available
EPOCH_UTC = datetime.datetime.utcfromtimestamp(0.0).replace(tzinfo=doublethink.UTC)

# All of these imports use doublethink for real and are unsafe
# to do if doublethink is unavailable.
from brozzler.worker import BrozzlerWorker
from brozzler.frontier import RethinkDbFrontier
from brozzler.model import (
@@ -424,7 +426,6 @@ def suggest_default_chrome_exe():
InvalidJobConf,
)

# BrozzlerWorker can only be imported if doublethink is available
__all__.extend(
[
"Page",