Skip to content

Commit

Permalink
More package name fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielleHuisman committed Jul 29, 2020
1 parent 01f35b1 commit 8060772
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyffprobe/ffprobe.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import re
import subprocess

from ffprobe3.exceptions import FFProbeError
from .exceptions import FFProbeError


class FFProbe:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='pyffprobe',
version='1.0.1',
version='1.0.2',
description="A wrapper around ffprobe command to extract metadata from media files.",
author='Simon Hargreaves',
author_email='simon@simon-hargreaves.com',
Expand All @@ -22,7 +22,6 @@
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Natural Language :: English',
Expand Down
4 changes: 2 additions & 2 deletions tests/ffprobe-test.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from __future__ import print_function

import os
from ffprobe3 import FFProbe
from ffprobe3.exceptions import FFProbeError
from pyffprobe import FFProbe
from pyffprobe.exceptions import FFProbeError

test_dir = os.path.dirname(os.path.abspath(__file__))

Expand Down

0 comments on commit 8060772

Please sign in to comment.