Skip to content

Commit

Permalink
readied for python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
hellerve committed Dec 21, 2016
1 parent e9983bb commit 6fbec72
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion backend/config/settings.py
Expand Up @@ -2,7 +2,7 @@
Birdseye configuration
"""

from ConfigParser import ConfigParser
from configparser import ConfigParser

config = ConfigParser()
config.read([
Expand Down
2 changes: 1 addition & 1 deletion client/components/errors/page.jsx
Expand Up @@ -52,7 +52,7 @@ class ErrorsPage extends React.Component {
<div className="error-icon">
<i className="fa fa-times-circle" aria-hidden="true"></i>
</div>
{message}
{body}
</div>
);
}
Expand Down
Expand Up @@ -38,4 +38,3 @@ export function showBgpAttributes(attributes) {
}
}


@@ -1,4 +1,3 @@

/**
* Show BGP attributes as a modal dialog
*
Expand All @@ -16,7 +15,6 @@ import {hideBgpAttributesModal}


class BgpAttributesModal extends React.Component {

closeModal() {
this.props.dispatch(
hideBgpAttributesModal()
Expand Down
5 changes: 2 additions & 3 deletions client/components/routeservers/routes/page.jsx
Expand Up @@ -40,7 +40,7 @@ class RoutesPage extends React.Component {
<div className="col-md-8">

<div className="card">
<SearchInput
<SearchInput
value={this.props.routesFilterValue}
placeholder="Filter by Network, Gateway or Interface"
onChange={(e) => this.setFilter(e.target.value)} />
Expand All @@ -51,11 +51,10 @@ class RoutesPage extends React.Component {
</div>
<div className="col-md-4">
<div className="card">
<Status routeserverId={this.props.params.routeserverId} />
<Status routeserverId={this.props.params.routeserverId} />
</div>
</div>
</div>

</div>
);
}
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
@@ -1,3 +1,4 @@
requests
flask
uwsgi
configparser

0 comments on commit 6fbec72

Please sign in to comment.