diff options
-rw-r--r-- | pym/emerge/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/emerge/__init__.py b/pym/emerge/__init__.py index c27ad0b92..b5d15408f 100644 --- a/pym/emerge/__init__.py +++ b/pym/emerge/__init__.py @@ -4031,7 +4031,7 @@ def action_sync(settings, trees, mtimedb, myopts, myaction): try: servertimestamp = time.mktime(time.strptime( content[0], "%a, %d %b %Y %H:%M:%S +0000")) - except OverflowError, ValueError: + except (OverflowError, ValueError): pass del mycommand, mypids, content if exitcode == os.EX_OK: |