Skip to content

Commit

Permalink
Use new config dir
Browse files Browse the repository at this point in the history
  • Loading branch information
ku1ik committed Sep 23, 2013
1 parent 4f0b7eb commit bf4fba2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/asciinema
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import shutil
import StringIO

SCRIPT_NAME = os.path.basename(sys.argv[0])
BASE_DIR = os.path.expanduser("~/.ascii.io")
BASE_DIR = os.path.expanduser("~/.asciinema")


class AsciiCast(object):
Expand Down Expand Up @@ -384,7 +384,7 @@ Optional arguments:


def print_version():
print 'asciiio 1.0'
print 'asciinema 1.0'


def main():
Expand All @@ -411,7 +411,7 @@ def main():
config.add_section('api')
config.add_section('record')

cfg_file = os.path.expanduser('~/.ascii.io/config')
cfg_file = os.path.expanduser('~/.asciinema/config')
try:
config.read(cfg_file)
except ConfigParser.ParsingError:
Expand Down

0 comments on commit bf4fba2

Please sign in to comment.