Skip to content

Commit

Permalink
Fix embarrassing typo in earlier commit
Browse files Browse the repository at this point in the history
Signed-off-by: Jim Easterbrook <jim@jim-easterbrook.me.uk>
  • Loading branch information
jim-easterbrook committed Aug 22, 2018
1 parent 2f097d0 commit fb949be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/pywws/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '18.8.0'
_release = '1575'
_commit = 'c424d9f'
_release = '1576'
_commit = '2f097d0'
2 changes: 1 addition & 1 deletion src/pywws/service/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ def main(class_, argv=None):
if hasattr(class_, 'register'):
parser.add_argument('-r', '--register', action='store_true',
help='register (or update) with service')
if not issubclass(class_, CatchupDataService):
if issubclass(class_, CatchupDataService):
parser.add_argument('-c', '--catchup', action='store_true',
help='upload all data since last upload')
parser.add_argument('-v', '--verbose', action='count',
Expand Down

0 comments on commit fb949be

Please sign in to comment.