Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update utils.py for py3 and backwards-compatible with py2 #61

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fbone/user/forms.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-

from flask_wtf import Form
from flask_wtf.html5 import URLField, EmailField, TelField
from wtforms.fields.html5 import URLField, EmailField, TelField

from wtforms import ValidationError, StringField, PasswordField, SubmitField, \
TextAreaField, FileField, DateField, SelectField
Expand Down
2 changes: 1 addition & 1 deletion fbone/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ def make_dir(dir_path):
try:
if not os.path.exists(dir_path):
os.mkdir(dir_path)
except Exception, e:
except getopt.GetoptError as e: # in python3 the raise syntax no longer accepts comma-separated arguments
raise e