Skip to content
This repository was archived by the owner on Jan 28, 2021. It is now read-only.

Conversation

@traumschule
Copy link

https://bugs.torproject.org/28091

(this lists all commits from https://gitweb.torproject.org/gettor.git since 2017 - reviewing should be easier pulling it in first)

Copy link

@nmathewson nmathewson left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've noted a few small issues in the python3 commit on this branch.

tb_version_config.read(tb_version_path)
tb_version = tb_version_config['version']['current']

except:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's not do an unconditional except: -- instead, let's catch specific exceptions.

print 'Go to the following link in your browser: ' + authorize_url
code = raw_input('Enter verification code: ').strip()
print('Go to the following link in your browser: ' + authorize_url)
code = input('Enter verification code: ').strip()

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be using getpass() instead?

p4 = re.compile('.*\.asc$')

for file in uploaded_files.keys():
for file in list(uploaded_files.keys()):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't this just become for file in uploaded_files: ?

try:
json_object = json.loads(my_json)
except ValueError, e:
except ValueError as e:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here (and elsewhere) it looks like you're ignoring the value of the exception -- you can just delete the as e.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants