diff --git a/go/Makefile b/Makefile similarity index 100% rename from go/Makefile rename to Makefile diff --git a/collect.py b/python/collect.py similarity index 100% rename from collect.py rename to python/collect.py diff --git a/example.sh b/python/example.sh similarity index 100% rename from example.sh rename to python/example.sh diff --git a/irclogtools/__init__.py b/python/irclogtools/__init__.py similarity index 100% rename from irclogtools/__init__.py rename to python/irclogtools/__init__.py diff --git a/irclogtools/archive.py b/python/irclogtools/archive.py similarity index 100% rename from irclogtools/archive.py rename to python/irclogtools/archive.py diff --git a/irclogtools/containers.py b/python/irclogtools/containers.py similarity index 98% rename from irclogtools/containers.py rename to python/irclogtools/containers.py index d7b61ec..85705ac 100644 --- a/irclogtools/containers.py +++ b/python/irclogtools/containers.py @@ -46,7 +46,7 @@ class CombinedLogfile(object): if not network: network = meta["network"] assert channel == meta["channel"], "Portion does not match first portion's channel" - assert network == meta["network"], "Portion does not match first portion's channel" + # assert network == meta["network"], "Portion does not match first portion's network" elif line.startswith(self.ENDPORTIONHEADER.encode("UTF-8")): assert portion is not None and meta is not None, "Ended portion while not in portion?" diff --git a/irclogtools/tools.py b/python/irclogtools/tools.py similarity index 100% rename from irclogtools/tools.py rename to python/irclogtools/tools.py diff --git a/pull.py b/python/pull.py similarity index 100% rename from pull.py rename to python/pull.py diff --git a/requirements.txt b/python/requirements.txt similarity index 100% rename from requirements.txt rename to python/requirements.txt diff --git a/setup.py b/python/setup.py similarity index 100% rename from setup.py rename to python/setup.py diff --git a/go/src/archive.go b/src/archive.go similarity index 100% rename from go/src/archive.go rename to src/archive.go diff --git a/go/src/containers.go b/src/containers.go similarity index 100% rename from go/src/containers.go rename to src/containers.go