Skip to content

Commit

Permalink
Fixed README StaSh link
Browse files Browse the repository at this point in the history
  • Loading branch information
Seanld committed Jul 31, 2017
1 parent bd9c648 commit dfbeccd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
4 changes: 2 additions & 2 deletions latte.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit dfbeccd

Please sign in to comment.