Skip to content

Commit

Permalink
fixed git ref
Browse files Browse the repository at this point in the history
  • Loading branch information
blaflamme committed Nov 29, 2011
1 parent 052f5f1 commit efe2eed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions conf.py
Expand Up @@ -105,12 +105,12 @@
_themes = os.path.join(cwd, '_themes')

if not os.path.isdir(_themes):
call(['git', 'clone', 'git://github.com/Pylons/pylons_sphinx_theme.git',
call([git, 'clone', 'git://github.com/Pylons/pylons_sphinx_theme.git',
'_themes'])
else:
os.chdir(_themes)
call(['git', 'checkout', 'master'])
call(['git', 'pull'])
call([git, 'checkout', 'master'])
call([git, 'pull'])
os.chdir(cwd)

sys.path.append(os.path.abspath('_themes'))
Expand Down

0 comments on commit efe2eed

Please sign in to comment.