Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Syntaf committed Apr 2, 2017
1 parent 57b84bb commit e4b2aa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion travis_sphinx.py
Expand Up @@ -10,7 +10,7 @@ def run(*args):
sys.exit(ret)

def run_silent(*args):
ret = subprocess.call(args, stdout=open(os.devnull, 'wb'), strerr=open(os.devnull, 'wb'))
ret = subprocess.call(args, stdout=open(os.devnull, 'wb'), stderr=open(os.devnull, 'wb'))
if ret != 0:
print('error occured while pushing to gh-pages. Has your repo/token changed?')
sys.exit(ret)
Expand Down

0 comments on commit e4b2aa7

Please sign in to comment.