Skip to content

Instantly share code, notes, and snippets.

@campaul
Created January 10, 2015 05:27
Show Gist options
  • Save campaul/c7e502e1ed680cc26d3f to your computer and use it in GitHub Desktop.
Save campaul/c7e502e1ed680cc26d3f to your computer and use it in GitHub Desktop.
## this...
original_filename = os.path.basename(
os.path.splitext(photo.raw_path)[0]
)
file_ext = os.path.splitext(photo.raw_path)[1]
## could be...
file_name, file_ext = os.path.splitext(os.path.basename(photo.raw_path))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment