From ffb890c962a612c3d5b86fd5624677260f399fbd Mon Sep 17 00:00:00 2001 From: j Date: Sun, 27 Apr 2008 19:10:34 +0200 Subject: [PATCH] rename bt->torrent --- .bzrignore | 3 +++ oxutils/__init__.py | 2 +- oxutils/{bt.py => torrent.py} | 0 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .bzrignore rename oxutils/{bt.py => torrent.py} (100%) diff --git a/.bzrignore b/.bzrignore new file mode 100644 index 0000000..d61f71f --- /dev/null +++ b/.bzrignore @@ -0,0 +1,3 @@ +build +dist +oxutils.egg-info diff --git a/oxutils/__init__.py b/oxutils/__init__.py index 235518d..ed972e5 100644 --- a/oxutils/__init__.py +++ b/oxutils/__init__.py @@ -12,7 +12,7 @@ import cache #only works if BitTornado is installed try: - from bt import * + from torrent import * except: pass diff --git a/oxutils/bt.py b/oxutils/torrent.py similarity index 100% rename from oxutils/bt.py rename to oxutils/torrent.py