Skip to content

Commit

Permalink
Fix gcsio.exists call
Browse files Browse the repository at this point in the history
  • Loading branch information
silviulica committed Jun 29, 2016
1 parent 436724e commit cead645
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdks/python/apache_beam/io/fileio.py
Expand Up @@ -213,7 +213,7 @@ def exists(path):
if path.startswith('gs://'):
# pylint: disable=wrong-import-order, wrong-import-position
from apache_beam.io import gcsio
return gcsio.GcsIO().exists()
return gcsio.GcsIO().exists(path)
else:
return os.path.exists(path)

Expand Down

0 comments on commit cead645

Please sign in to comment.