Skip to content

Commit

Permalink
"timeout" option is an int, not a bool
Browse files Browse the repository at this point in the history
  • Loading branch information
Gauvain Pocentek committed Feb 7, 2015
1 parent 990eeca commit 2d48e71
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gitlab
Expand Up @@ -327,11 +327,11 @@ except:
pass

try:
timeout = config.getboolean('global', 'timeout')
timeout = config.getint('global', 'timeout')
except:
pass
try:
timeout = config.getboolean(gitlab_id, 'timeout')
timeout = config.getint(gitlab_id, 'timeout')
except:
pass

Expand Down

0 comments on commit 2d48e71

Please sign in to comment.