Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
devflow
Commits
1b3aeefd
Commit
1b3aeefd
authored
Apr 01, 2013
by
Christos Stavrakakis
Browse files
Fix typos/imports
parent
b54fa347
Changes
3
Hide whitespace changes
Inline
Side-by-side
devflow/autopkg.py
View file @
1b3aeefd
...
...
@@ -39,7 +39,6 @@ import sys
from
git
import
GitCommandError
from
optparse
import
OptionParser
from
sh
import
mktemp
,
cd
,
rm
,
git_dch
# pylint: disable=E0611
from
configobj
import
ConfigObj
from
devflow
import
versioning
from
devflow
import
utils
...
...
devflow/utils.py
View file @
1b3aeefd
...
...
@@ -127,7 +127,7 @@ def _get_branch(branch):
return
branch
origin_branch
=
"origin/"
+
branch
if
origin_branch
in
repo
.
refs
:
print
"Creating branch '%s' to track '%s'"
(
branch
,
origin_branch
)
print
"Creating branch '%s' to track '%s'"
%
(
branch
,
origin_branch
)
repo
.
git
.
branch
(
branch
,
origin_branch
)
return
branch
else
:
...
...
devflow/versioning.py
View file @
1b3aeefd
...
...
@@ -48,7 +48,7 @@ import pprint
from
distutils
import
log
# pylint: disable=E0611
from
devflow
import
BRANCH_TYPES
,
BASE_VERSION_FILE
from
devflow
import
BRANCH_TYPES
,
BASE_VERSION_FILE
,
VERSION_RE
from
devflow
import
utils
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment