aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BUILD.md2
-rw-r--r--README.md2
-rw-r--r--onionshare_gui/common.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/BUILD.md b/BUILD.md
index b7722e82..1c02c870 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -11,7 +11,7 @@ cd onionshare
*For .deb-based distros (like Debian, Ubuntu, Linux Mint):*
-Note that python-stem appears in Debian wheezy and newer (so by extension Tails 1.1 and newer), and it appears in Ubuntu 13.10 and newer. Older versions of Debian and Ubuntu aren't supported.
+Note that python-stem appears in Debian wheezy and newer, and it appears in Ubuntu 13.10 and newer. Older versions of Debian and Ubuntu aren't supported.
```sh
sudo apt-get install -y build-essential fakeroot python-all python-stdeb python-flask python-stem python-qt4 dh-python
diff --git a/README.md b/README.md
index a8a80e55..4b3280cc 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@ If you're interested in exactly what OnionShare does and does not protect agains
You can download OnionShare to install on your computer from <https://onionshare.org/>.
-You can set up your development environment to build OnionShare yourself by following [these instructions](/BUILD.md). You can also install OnionShare in your Tails persistent volume by following [these instructions](/tails/README.md).
+You can set up your development environment to build OnionShare yourself by following [these instructions](/BUILD.md).
## How to Use
diff --git a/onionshare_gui/common.py b/onionshare_gui/common.py
index 405c1090..3ae3ea06 100644
--- a/onionshare_gui/common.py
+++ b/onionshare_gui/common.py
@@ -40,7 +40,7 @@ def get_image_path(filename):
Returns the OnionShare image path.
"""
p = helpers.get_platform()
- if p == 'Linux' or p == 'Tails':
+ if p == 'Linux':
prefix = os.path.join(sys.prefix, 'share/onionshare/images')
elif p == 'Darwin':
prefix = os.path.join(helpers.osx_resources_dir, 'images')