From dfbeccdace0be8044328d47434c4191fa144306b Mon Sep 17 00:00:00 2001 From: Sean Wilkerson Date: Mon, 31 Jul 2017 14:58:28 -0600 Subject: [PATCH] Fixed README StaSh link --- README.md | 2 +- latte.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4cbd8b4..ecfc4a5 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ ## What's The Point? -When I was using (StaSh)[https://github.com/ywangd/stash] on Pythonista, I found it really annoying that I had to constantly run self-extracting Python scripts to install various add-ons and commands for StaSh. Because of that, I decided to create a simple utility that allows the creation, hosting, and sharing of software without hassle. +When I was using [StaSh](https://github.com/ywangd/stash) on Pythonista, I found it really annoying that I had to constantly run self-extracting Python scripts to install various add-ons and commands for StaSh. Because of that, I decided to create a simple utility that allows the creation, hosting, and sharing of software without hassle. Now users of StaSh can easily communicate their software to other users. No more transfer problems. diff --git a/latte.py b/latte.py index 03e944c..e3b5689 100644 --- a/latte.py +++ b/latte.py @@ -3,10 +3,10 @@ import requests import sys import argparse -from os import remove, mkdir, rename, listdir +from os import remove, mkdir, rename, listdir, getcwd from shutil import rmtree -cwd = os.getcwd() +cwd = getcwd() documentsIndex = cwd.index("Documents") documentsIndex += len("Documents") ROOT = cwd[:documentsIndex]