Skip to content
This repository has been archived by the owner on May 9, 2023. It is now read-only.

Commit

Permalink
str.startswith was missing an s #75
Browse files Browse the repository at this point in the history
  • Loading branch information
dbr committed Dec 16, 2012
1 parent 9f0b017 commit 1d44db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octogit/cli.py
Expand Up @@ -134,7 +134,7 @@ def begin():
issue_number = args.get(1)

if issue_number is not None:
if issue_number.startwith('#'):
if issue_number.startswith('#'):
issue_number = issue_number[1:]

if args.get(2) == 'close':
Expand Down

0 comments on commit 1d44db5

Please sign in to comment.