Skip to content
This repository has been archived by the owner on Aug 15, 2018. It is now read-only.

Commit

Permalink
Revert "Merge branch 'master' of github:tissuemaps/tmclient"
Browse files Browse the repository at this point in the history
This reverts commit aca723c, reversing
changes made to 9008736.

Reverting the last two commits
  • Loading branch information
sparkvilla committed Aug 31, 2017
1 parent aca723c commit 2912018
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/python/tmclient/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import os
import cgi
import re
import errno
import json
import glob
try:
Expand Down Expand Up @@ -1051,8 +1050,7 @@ def upload_microscope_files(self, plate_name, acquisition_name,
directory = os.path.expandvars(directory)
filenames = [
f for f in os.listdir(directory)
if not os.path.isdir(os.path.join(directory, f))
and not f.startswith('.')
if not os.path.isdir(f) and not f.startswith('.')
]
registered_filenames = self._register_files_for_upload(
acquisition_id, filenames
Expand Down

0 comments on commit 2912018

Please sign in to comment.