egh / sparchive

A simple, personal digital archiving solution.
GNU General Public License v3.0
3 stars 2 forks source link

Update cli.py #1

Closed atomotic closed 10 years ago

atomotic commented 10 years ago

/home/egh was hardcoded in root. changing to ~/a

egh commented 10 years ago

Thanks!

atomotic commented 10 years ago

sorry, but there is a ' to remove. i used the github editor without noticing.

filer.add_argument('-r', '--root', help='root of archive', default=path.join(path.expanduser("~"), "a")')

to

filer.add_argument('-r', '--root', help='root of archive', default=path.join(path.expanduser("~"), "a"))
egh commented 10 years ago

no problem, easily fixed!