Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
devflow
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
itminedu
devflow
Commits
1b3aeefd
Commit
1b3aeefd
authored
12 years ago
by
Christos Stavrakakis
Browse files
Options
Downloads
Patches
Plain Diff
Fix typos/imports
parent
b54fa347
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
devflow/autopkg.py
+0
-1
0 additions, 1 deletion
devflow/autopkg.py
devflow/utils.py
+1
-1
1 addition, 1 deletion
devflow/utils.py
devflow/versioning.py
+1
-1
1 addition, 1 deletion
devflow/versioning.py
with
2 additions
and
3 deletions
devflow/autopkg.py
+
0
−
1
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
...
...
This diff is collapsed.
Click to expand it.
devflow/utils.py
+
1
−
1
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
:
...
...
This diff is collapsed.
Click to expand it.
devflow/versioning.py
+
1
−
1
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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment