Skip to content

Commit

Permalink
Fix a bug caused by refactoring/flake8ing.
Browse files Browse the repository at this point in the history
  • Loading branch information
shlomif committed Apr 19, 2017
1 parent 8c4887b commit e2cb4d8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pysollib/hint.py
Original file line number Diff line number Diff line change
Expand Up @@ -955,10 +955,10 @@ def computeHints(self):
else:
m = re.match(
'(?P<ncards>a card|(?P<count>\d+) cards) '
'from (?P<source_type>stack|freecell)'
'from (?P<source_type>stack|freecell) '
'(?P<source_idx>\d+) to '
'(?P<dest>the foundations|(?P<dest_type>freecell|stack)'
' (?P<dest_idx>\d+))\s*', move_s)
'(?P<dest>the foundations|(?P<dest_type>freecell|stack) '
'(?P<dest_idx>\d+))\s*', move_s)

if not m:
continue
Expand Down

0 comments on commit e2cb4d8

Please sign in to comment.